Uses of Class
com.google.inject.spi.ErrorDetail
Packages that use ErrorDetail
Package
Description
Guice (sounds like "juice")
Guice service provider interface
-
Uses of ErrorDetail in com.google.inject.internal
Classes in com.google.inject.internal with type parameters of type ErrorDetailModifier and TypeClassDescription(package private) class
InternalErrorDetail<T extends ErrorDetail<T>>
Represents an error created by Guice as opposed to custom error added to the binder from application code.Subclasses of ErrorDetail in com.google.inject.internalModifier and TypeClassDescription(package private) final class
Error reported by Guice when a key is bound at multiple places the injector.(package private) final class
Error reported by Guice when a key is already bound in one or more child injectors or private modules.(package private) final class
Error reported by Guice when duplicate elements are found in ainvalid reference
Multibinder
(package private) final class
DuplicateMapKeyError<K,
V> Error reported by Guice when a duplicate key is found in ainvalid reference
MapBinder
final class
Generic error message representing a Guice internal error.(package private) class
InternalErrorDetail<T extends ErrorDetail<T>>
Represents an error created by Guice as opposed to custom error added to the binder from application code.(package private) final class
Error reported when Guice can't find an useable constructor to create objects.(package private) final class
Error reported by Guice when a key is not bound in the injector.(package private) final class
Error reported by Guice when a scope annotation is not bound to any scope implementation.Methods in com.google.inject.internal with parameters of type ErrorDetailModifier and TypeMethodDescriptionboolean
BindingAlreadySetError.isMergeable
(ErrorDetail<?> otherError) boolean
ChildBindingAlreadySetError.isMergeable
(ErrorDetail<?> otherError) boolean
MissingConstructorError.isMergeable
(ErrorDetail<?> other) boolean
MissingImplementationError.isMergeable
(ErrorDetail<?> otherError) boolean
ScopeNotFoundError.isMergeable
(ErrorDetail<?> other) Method parameters in com.google.inject.internal with type arguments of type ErrorDetailModifier and TypeMethodDescriptionvoid
BindingAlreadySetError.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) void
ChildBindingAlreadySetError.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) protected void
DuplicateElementError.formatDetail
(List<ErrorDetail<?>> others, Formatter formatter) protected final void
DuplicateMapKeyError.formatDetail
(List<ErrorDetail<?>> others, Formatter formatter) void
GenericErrorDetail.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) protected void
MissingConstructorError.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) void
MissingImplementationError.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) protected void
ScopeNotFoundError.formatDetail
(List<ErrorDetail<?>> mergeableErrors, Formatter formatter) -
Uses of ErrorDetail in com.google.inject.spi
Classes in com.google.inject.spi with type parameters of type ErrorDetailModifier and TypeClassDescriptionclass
ErrorDetail<SelfT extends ErrorDetail<SelfT>>
Details about a single Guice error and supports formatting itself in the context of other Guice errors.Fields in com.google.inject.spi declared as ErrorDetailMethods in com.google.inject.spi that return ErrorDetailModifier and TypeMethodDescriptionErrorDetail
<?> Message.getErrorDetail()
Returns details about this error message.Methods in com.google.inject.spi with parameters of type ErrorDetailModifier and TypeMethodDescriptionboolean
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 ErrorDetailModifier and TypeMethodDescriptionfinal 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 ErrorDetailModifierConstructorDescriptionprivate
Message
(ErrorId errorId, ErrorDetail<?> errorDetail) Message
(GuiceInternal internalOnly, ErrorId errorId, ErrorDetail<?> errorDetail)