Uses of Interface
org.apache.velocity.util.introspection.Converter
-
Packages that use Converter Package Description org.apache.velocity.util.introspection -
-
Uses of Converter in org.apache.velocity.util.introspection
Fields in org.apache.velocity.util.introspection declared as Converter Modifier and Type Field Description (package private) static Converter<?>
TypeConversionHandlerImpl. cacheMiss
cache miss converter(package private) Converter<?>[]
UberspectImpl.VelMethodImpl. converters
(package private) static Converter<?>
TypeConversionHandlerImpl. toString
basic toString converterFields in org.apache.velocity.util.introspection with type parameters of type Converter Modifier and Type Field Description (package private) java.util.Map<org.apache.commons.lang3.tuple.Pair<java.lang.String,java.lang.String>,Converter<?>>
TypeConversionHandlerImpl. converterCacheMap
a converters cache map, initialized with the standard narrowing and string parsing conversions.(package private) static java.util.Map<org.apache.commons.lang3.tuple.Pair<java.lang.String,java.lang.String>,Converter<?>>
TypeConversionHandlerImpl. standardConverterMap
standard narrowing and string parsing conversions.Methods in org.apache.velocity.util.introspection that return Converter Modifier and Type Method Description Converter
ConversionHandler. getNeededConverter(java.lang.Class<?> formal, java.lang.Class<?> actual)
Deprecated.Returns the appropriate Converter object needed for an explicit conversion Returns null if no conversion is needed.Converter<?>
TypeConversionHandler. getNeededConverter(java.lang.reflect.Type formal, java.lang.Class<?> actual)
Returns the appropriate Converter object needed for an explicit conversion Returns null if no conversion is needed.Converter<?>
TypeConversionHandlerImpl. getNeededConverter(java.lang.reflect.Type formal, java.lang.Class<?> actual)
Returns the appropriate Converter object needed for an explicit conversion Returns null if no conversion is needed.private Converter<?>[]
UberspectImpl. getNeededConverters(java.lang.reflect.Type[] expected, java.lang.Object[] provided)
get the list of needed converters to adapt passed argument types to method typesMethods in org.apache.velocity.util.introspection with parameters of type Converter Modifier and Type Method Description void
ConversionHandler. addConverter(java.lang.Class<?> formal, java.lang.Class<?> actual, Converter converter)
Deprecated.Add the given converter to the handler.void
TypeConversionHandler. addConverter(java.lang.reflect.Type formal, java.lang.Class<?> actual, Converter<?> converter)
Add the given converter to the handler.void
TypeConversionHandlerImpl. addConverter(java.lang.reflect.Type formal, java.lang.Class<?> actual, Converter<?> converter)
Add the given converter to the handler.Constructors in org.apache.velocity.util.introspection with parameters of type Converter Constructor Description VelMethodImpl(java.lang.reflect.Method method, boolean wrapArray, Converter<?>[] converters)
-