Class TypeConverterBinding
- java.lang.Object
-
- org.elasticsearch.common.inject.spi.TypeConverterBinding
-
- All Implemented Interfaces:
Element
public final class TypeConverterBinding extends java.lang.Object implements Element
Registration of type converters for matching target types. Instances are created explicitly in a module usingconvertToTypes()statements:convertToTypes(Matchers.only(DateTime.class), new DateTimeConverter());- Since:
- 2.0
-
-
Method Summary
Modifier and Type Method Description <T> TacceptVisitor(ElementVisitor<T> visitor)Accepts an element visitor.voidapplyTo(Binder binder)Writes this module element to the given binder (optional operation).java.lang.ObjectgetSource()Returns an arbitrary object containing information about the "place" where this element was configured.TypeConvertergetTypeConverter()Matcher<? super TypeLiteral<?>>getTypeMatcher()
-
-
-
Method Detail
-
getSource
public java.lang.Object getSource()
Description copied from interface:ElementReturns an arbitrary object containing information about the "place" where this element was configured. Used by Guice in the production of descriptive error messages.Tools might specially handle types they know about;
StackTraceElementis a good example. Tools should simply calltoString()on the source object if the type is unfamiliar.
-
getTypeMatcher
public Matcher<? super TypeLiteral<?>> getTypeMatcher()
-
getTypeConverter
public TypeConverter getTypeConverter()
-
acceptVisitor
public <T> T acceptVisitor(ElementVisitor<T> visitor)
Description copied from interface:ElementAccepts an element visitor. Invokes the visitor method specific to this element's type.- Specified by:
acceptVisitorin interfaceElement- Parameters:
visitor- to call back on
-
-