Uses of Class
com.google.inject.spi.ErrorDetail
-
Packages that use ErrorDetail Package Description com.google.inject.spi Guice service provider interface -
-
Uses of ErrorDetail in com.google.inject.spi
Classes in com.google.inject.spi with type parameters of type ErrorDetail Modifier and Type Class Description class
ErrorDetail<SelfT extends ErrorDetail<SelfT>>
Details about a single Guice error and supports formatting itself in the context of other Guice errors.Methods in com.google.inject.spi that return ErrorDetail Modifier and Type Method Description ErrorDetail<?>
Message. getErrorDetail()
Returns details about this error message.Methods in com.google.inject.spi with parameters of type ErrorDetail Modifier and Type Method Description boolean
ErrorDetail. isMergeable(ErrorDetail<?> otherError)
Returns true if this error can be merged with theotherError
and formatted together.Method parameters in com.google.inject.spi with type arguments of type ErrorDetail Modifier and Type Method Description void
ErrorDetail. format(int index, List<ErrorDetail<?>> mergeableErrors, Formatter formatter)
Formats this error along with other errors that are mergeable with this error.protected abstract void
ErrorDetail. formatDetail(List<ErrorDetail<?>> mergeableErrors, Formatter formatter)
Formats the detail of this error message along with other errors that are mergeable with this error.Constructors in com.google.inject.spi with parameters of type ErrorDetail Constructor Description Message(com.google.inject.internal.GuiceInternal internalOnly, com.google.inject.internal.ErrorId errorId, ErrorDetail<?> errorDetail)
-