Interface Converter<T1,T2>
-
- Type Parameters:
T1- type of input objectsT2- type of converted objects
- All Known Implementing Classes:
ArrayListConverter,ArrayToArrayConverter,ByteArrayIntArrayConverter,CalendarDateConverter,CharacterStringConverter,CollectionCastConverter,ConcatenationConverter,DateCalendarConverter,DateTimeConverter,DateTimestampConverter,DoubleArrayDoubleWrapperConverter,DoubleArrayFloatArrayConverter,DoubleWrapperArrayDoubleConverter,FloatArrayDoubleArrayConverter,GenericArrayConverter,IdentityConverter,IntArrayByteArrayConverter,IntArrayIntegerArrayConverter,IntArrayLongArrayConverter,IntArrayShortArrayConverter,IntegerArrayIntArrayConverter,ListArrayConverter,ListElementConverter,ListTypedArrayConverter,LongArrayIntArrayConverter,NumberByteConverter,NumberDoubleConverter,NumberFloatConverter,NumberIntegerConverter,NumberLongConverter,NumberShortConverter,ShortArrayIntArrayConverter,UtilDateSqlDateConverter
public interface Converter<T1,T2>An interface to define a converter (usually for use in some kind of filtering method).
The concrete implementation should specify whether it can be used in several threads concurrently or not.
- Author:
- agz
- See Also:
ConverterIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T2convert(T1 object)Converts the specified object and returns the conversion result.
-