|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TypeLiteral | |
---|---|
com.google.inject | Google Guice (pronounced "juice") is an ultra-lightweight dependency injection framework. |
com.google.inject.binder | Interfaces which make up Binder 's
expression language. |
com.google.inject.multibindings | Extension for binding multiple instances in a collection. |
com.google.inject.spi | Guice service provider interface |
Uses of TypeLiteral in com.google.inject |
---|
Methods in com.google.inject that return TypeLiteral | ||
---|---|---|
static
|
TypeLiteral.get(Class<T> type)
Gets type literal for the given Class instance. |
|
static TypeLiteral<?> |
TypeLiteral.get(Type type)
Gets type literal for the given Type instance. |
|
TypeLiteral<?> |
TypeLiteral.getFieldType(Field field)
Returns the resolved generic type of field . |
|
TypeLiteral<?> |
TypeLiteral.getReturnType(Method method)
Returns the resolved generic return type of method . |
|
TypeLiteral<?> |
TypeLiteral.getSupertype(Class<?> supertype)
Returns the generic form of supertype . |
|
TypeLiteral<T> |
Key.getTypeLiteral()
Gets the key type. |
Methods in com.google.inject that return types with arguments of type TypeLiteral | |
---|---|
List<TypeLiteral<?>> |
TypeLiteral.getExceptionTypes(Member methodOrConstructor)
Returns the resolved generic exception types thrown by constructor . |
List<TypeLiteral<?>> |
TypeLiteral.getParameterTypes(Member methodOrConstructor)
Returns the resolved generic parameter types of methodOrConstructor . |
Methods in com.google.inject with parameters of type TypeLiteral | ||
---|---|---|
protected
|
PrivateModule.bind(TypeLiteral<T> typeLiteral)
|
|
|
Binder.bind(TypeLiteral<T> typeLiteral)
See the EDSL examples at Binder . |
|
protected
|
AbstractModule.bind(TypeLiteral<T> typeLiteral)
|
|
protected AnnotatedElementBuilder |
PrivateModule.expose(TypeLiteral<?> type)
Makes a binding for type available to other modules and the injector. |
|
|
Injector.findBindingsByType(TypeLiteral<T> type)
Returns all explicit bindings for type . |
|
static
|
Key.get(TypeLiteral<T> typeLiteral)
Gets a key for an injection type. |
|
static
|
Key.get(TypeLiteral<T> typeLiteral,
Annotation annotation)
Gets a key for an injection type and an annotation. |
|
static
|
Key.get(TypeLiteral<T> typeLiteral,
Class<? extends Annotation> annotationType)
Gets a key for an injection type and an annotation type. |
Method parameters in com.google.inject with type arguments of type TypeLiteral | |
---|---|
protected void |
PrivateModule.convertToTypes(Matcher<? super TypeLiteral<?>> typeMatcher,
TypeConverter converter)
|
void |
Binder.convertToTypes(Matcher<? super TypeLiteral<?>> typeMatcher,
TypeConverter converter)
Binds a type converter. |
protected void |
AbstractModule.convertToTypes(Matcher<? super TypeLiteral<?>> typeMatcher,
TypeConverter converter)
|
Uses of TypeLiteral in com.google.inject.binder |
---|
Methods in com.google.inject.binder with parameters of type TypeLiteral | |
---|---|
AnnotatedElementBuilder |
PrivateBinder.expose(TypeLiteral<?> type)
Makes a binding for type available to the enclosing environment. |
ScopedBindingBuilder |
LinkedBindingBuilder.to(TypeLiteral<? extends T> implementation)
See the EDSL examples at Binder . |
Uses of TypeLiteral in com.google.inject.multibindings |
---|
Methods in com.google.inject.multibindings with parameters of type TypeLiteral | ||
---|---|---|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with no binding annotation. |
|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with no binding annotation. |
|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType,
Annotation annotation)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with annotation . |
|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType,
Annotation annotation)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with annotation . |
|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType,
Class<? extends Annotation> annotationType)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with annotationType . |
|
static
|
MapBinder.newMapBinder(Binder binder,
TypeLiteral<K> keyType,
TypeLiteral<V> valueType,
Class<? extends Annotation> annotationType)
Returns a new mapbinder that collects entries of keyType /valueType in a
Map that is itself bound with annotationType . |
|
static
|
Multibinder.newSetBinder(Binder binder,
TypeLiteral<T> type)
Returns a new multibinder that collects instances of type in a Set that is
itself bound with no binding annotation. |
|
static
|
Multibinder.newSetBinder(Binder binder,
TypeLiteral<T> type,
Annotation annotation)
Returns a new multibinder that collects instances of type in a Set that is
itself bound with annotation . |
|
static
|
Multibinder.newSetBinder(Binder binder,
TypeLiteral<T> type,
Class<? extends Annotation> annotationType)
Returns a new multibinder that collects instances of type in a Set that is
itself bound with annotationType . |
Uses of TypeLiteral in com.google.inject.spi |
---|
Methods in com.google.inject.spi that return types with arguments of type TypeLiteral | |
---|---|
Matcher<? super TypeLiteral<?>> |
TypeConverterBinding.getTypeMatcher()
|
Methods in com.google.inject.spi with parameters of type TypeLiteral | |
---|---|
Object |
TypeConverter.convert(String value,
TypeLiteral<?> toType)
Converts a string value. |
static InjectionPoint |
InjectionPoint.forConstructorOf(TypeLiteral<?> type)
Returns a new injection point for the injectable constructor of type . |
static Set<InjectionPoint> |
InjectionPoint.forInstanceMethodsAndFields(TypeLiteral<?> type)
Returns all instance method and field injection points on type . |
static Set<InjectionPoint> |
InjectionPoint.forStaticMethodsAndFields(TypeLiteral type)
Returns all static method and field injection points on type . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |