|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.inject.spi.TypeConverterBinding
public final class TypeConverterBinding
Registration of type converters for matching target types. Instances are created
explicitly in a module using convertToTypes()
statements:
convertToTypes(Matchers.only(TypeLiteral.get(DateTime.class)), new DateTimeConverter());
Constructor Summary | |
---|---|
TypeConverterBinding(Object source,
Matcher<? super TypeLiteral<?>> typeMatcher,
TypeConverter typeConverter)
|
Method Summary | ||
---|---|---|
|
acceptVisitor(ElementVisitor<T> visitor)
Accepts an element visitor. |
|
void |
applyTo(Binder binder)
Writes this module element to the given binder (optional operation). |
|
Object |
getSource()
Returns an arbitrary object containing information about the "place" where this element was configured. |
|
TypeConverter |
getTypeConverter()
|
|
Matcher<? super TypeLiteral<?>> |
getTypeMatcher()
|
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TypeConverterBinding(Object source, Matcher<? super TypeLiteral<?>> typeMatcher, TypeConverter typeConverter)
Method Detail |
---|
public Object getSource()
Element
Tools might specially handle types they know about; StackTraceElement
is a good
example. Tools should simply call toString()
on the source object if the type is
unfamiliar.
getSource
in interface Element
public Matcher<? super TypeLiteral<?>> getTypeMatcher()
public TypeConverter getTypeConverter()
public <T> T acceptVisitor(ElementVisitor<T> visitor)
Element
acceptVisitor
in interface Element
visitor
- to call back onpublic void applyTo(Binder binder)
Element
applyTo
in interface Element
binder
- to apply configuration element topublic String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |