Package org.geotools.util
Interface ConverterFactory
-
- All Known Implementing Classes:
AbbreviatedTimeUnitConverterFactory,AggregateProcess.AggregateResultsConverterFactory,ArrayConverterFactory,BigDateConverterFactory,BooleanConverterFactory,BooleanConverterFactory,CharsetConverterFactory,CollectionConverterFactory,ColorConverterFactory,CommonsConverterFactory,ComplexAttributeConverterFactory,CRSConverterFactory,DB2BlobConverterFactory,DB2ClobConverterFactory,EnumerationConverterFactory,GeometryConverterFactory,GeometryTypeConverterFactory,H2ClobConverterFactory,HStoreConverterFactory,InterpolationConverterFactory,JTDSClobConverterFactory,JTDSDateConverterFactory,LobConverterFactory,MeasureConverterFactory,NameConverterFactory,NumericConverterFactory,OracleBlobConverterFactory,OracleClobConverterFactory,OracleDateConverterFactory,OracleNClobConverterFactory,PercentageConverterFactory,QNameConverterFactory,ReferencedEnvelopeConverterFactory,SQLArrayConverterFactory,TemporalConverterFactory,TemporalConverterFactory,URConverterFactory,UuidConverterFactory,XmlConverterFactory
public interface ConverterFactoryFactory used to create instances ofConverter.- Since:
- 2.4
- Author:
- Justin Deoliveira, The Open Planning Project
-
-
Field Summary
Fields Modifier and Type Field Description static Hints.KeySAFE_CONVERSIONHint which specifies if only safe conversions should be atttemped by converter implementations.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConvertercreateConverter(Class<?> source, Class<?> target, Hints hints)Creates aConverterinstance for converting one type of object to another.
-
-
-
Field Detail
-
SAFE_CONVERSION
static final Hints.Key SAFE_CONVERSION
Hint which specifies if only safe conversions should be atttemped by converter implementations.
-
-
Method Detail
-
createConverter
Converter createConverter(Class<?> source, Class<?> target, Hints hints)
Creates aConverterinstance for converting one type of object to another.- Parameters:
source- The type to convert from.target- The type to convert to.hints- Hints used to be used while creating a converter.- Returns:
- The converter, or
nullif one could not be found.
-
-