Binderpublic interface PrivateBinder extends Binder
PrivateModule for details.| Modifier and Type | Method | Description |
|---|---|---|
AnnotatedElementBuilder |
expose(java.lang.Class<?> type) |
Makes a binding for
type available to the enclosing environment. |
void |
expose(Key<?> key) |
Makes the binding for
key available to the enclosing environment |
AnnotatedElementBuilder |
expose(TypeLiteral<?> type) |
Makes a binding for
type available to the enclosing environment. |
PrivateBinder |
skipSources(java.lang.Class... classesToSkip) |
Returns a binder that skips
classesToSkip when identify the
calling code. |
PrivateBinder |
withSource(java.lang.Object source) |
Returns a binder that uses
source as the reference location for
configuration errors. |
addError, addError, addError, bind, bind, bind, bindConstant, bindListener, bindScope, convertToTypes, currentStage, getMembersInjector, getMembersInjector, getProvider, getProvider, install, newPrivateBinder, requestInjection, requestInjection, requestStaticInjectionvoid expose(Key<?> key)
key available to the enclosing environmentAnnotatedElementBuilder expose(java.lang.Class<?> type)
type available to the enclosing environment. Use annotatedWith() to expose type with a
binding annotation.AnnotatedElementBuilder expose(TypeLiteral<?> type)
type available to the enclosing environment. Use annotatedWith() to expose type with a
binding annotation.PrivateBinder withSource(java.lang.Object source)
Bindersource as the reference location for
configuration errors. This is typically a StackTraceElement
for .java source but it could any binding source, such as the
path to a .properties file.withSource in interface Bindersource - any object representing the source location and has a
concise toString() valuePrivateBinder skipSources(java.lang.Class... classesToSkip)
BinderclassesToSkip when identify the
calling code. The caller's StackTraceElement is used to locate
the source of configuration errors.skipSources in interface BinderclassesToSkip - library classes that create bindings on behalf of
their clients.