Uses of Interface
org.apache.commons.beanutils.Converter
-
Packages that use Converter Package Description org.apache.commons.beanutils The Bean Introspection Utilities component of the Apache Commons subproject offers low-level utility classes that assist in getting and setting property values on Java classes that follow the naming design patterns outlined in the JavaBeans Specification, as well as mechanisms for dynamically defining and accessing bean properties.org.apache.commons.beanutils.converters Standard implementations of theConverterinterface that are pre-registered withConvertUtilsat startup time.org.apache.commons.beanutils.locale Locale-aware extensions of the standard beanutils classes.org.apache.commons.beanutils.locale.converters Standard implementations of the locale-awareLocaleConverterinterface that are pre-registered with locale-awareLocaleConvertUtilsat startup time. -
-
Uses of Converter in org.apache.commons.beanutils
Fields in org.apache.commons.beanutils with type parameters of type Converter Modifier and Type Field Description private WeakFastHashMap<java.lang.Class<?>,Converter>ConvertUtilsBean. convertersThe set ofConverters that can be used to convert Strings into objects of a specified Class, keyed by the destination Class.Methods in org.apache.commons.beanutils that return Converter Modifier and Type Method Description static ConverterConvertUtils. lookup(java.lang.Class<?> clazz)Look up and return any registeredConverterfor the specified destination class; if there is no registered Converter, returnnull.static ConverterConvertUtils. lookup(java.lang.Class<?> sourceType, java.lang.Class<?> targetType)Look up and return any registeredConverterfor the specified source and destination class; if there is no registered Converter, returnnull.ConverterConvertUtilsBean. lookup(java.lang.Class<?> clazz)Look up and return any registeredConverterfor the specified destination class; if there is no registered Converter, returnnull.ConverterConvertUtilsBean. lookup(java.lang.Class<?> sourceType, java.lang.Class<?> targetType)Look up and return any registeredConverterfor the specified source and destination class; if there is no registered Converter, returnnull.Methods in org.apache.commons.beanutils with parameters of type Converter Modifier and Type Method Description static voidConvertUtils. register(Converter converter, java.lang.Class<?> clazz)Register a customConverterfor the specified destinationClass, replacing any previously registered Converter.private voidConvertUtilsBean. register(java.lang.Class<?> clazz, Converter converter)strictly for convenience since it has same parameter order as Map.putvoidConvertUtilsBean. register(Converter converter, java.lang.Class<?> clazz)Register a customConverterfor the specified destinationClass, replacing any previously registered Converter.private voidConvertUtilsBean. registerArrayConverter(java.lang.Class<?> componentType, Converter componentConverter, boolean throwException, int defaultArraySize)Register a new ArrayConverter with the specified element delegate converter that returns a default array of the specified size in the event of conversion errors. -
Uses of Converter in org.apache.commons.beanutils.converters
Classes in org.apache.commons.beanutils.converters that implement Converter Modifier and Type Class Description classAbstractArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassAbstractConverterBaseConverterimplementation that provides the structure for handling conversion to and from a specified type.classArrayConverterGenericConverterimplementation that handles conversion to and from array objects.classBigDecimalConverterNumberConverterimplementation that handles conversion to and from java.math.BigDecimal objects.classBigIntegerConverterNumberConverterimplementation that handles conversion to and from java.math.BigInteger objects.classBooleanArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassBooleanConverterConverterimplementation that handles conversion to and from Boolean objects.classByteArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassByteConverterNumberConverterimplementation that handles conversion to and from java.lang.Byte objects.classCalendarConverterDateTimeConverterimplementation that handles conversion to and from java.util.Calendar objects.classCharacterArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassCharacterConverterConverterimplementaion that handles conversion to and from java.lang.Character objects.classClassConverterConverterimplementaion that handles conversion to and from java.lang.Class objects.classConverterFacadeclassDateConverterDateTimeConverterimplementation that handles conversion to and from java.util.Date objects.classDateTimeConverterConverterimplementaion that handles conversion to and from date/time objects.classDoubleArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassDoubleConverterNumberConverterimplementation that handles conversion to and from java.lang.Double objects.classFileConverterConverterimplementaion that handles conversion to and from java.io.File objects.classFloatArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassFloatConverterNumberConverterimplementation that handles conversion to and from java.lang.Float objects.classIntegerArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassIntegerConverterNumberConverterimplementation that handles conversion to and from java.lang.Integer objects.classLongArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassLongConverterNumberConverterimplementation that handles conversion to and from java.lang.Long objects.classNumberConverterConverterimplementaion that handles conversion to and from java.lang.Number objects.classShortArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassShortConverterNumberConverterimplementation that handles conversion to and from java.lang.Short objects.classSqlDateConverterDateTimeConverterimplementation that handles conversion to and from java.sql.Date objects.classSqlTimeConverterDateTimeConverterimplementation that handles conversion to and from java.sql.Time objects.classSqlTimestampConverterDateTimeConverterimplementation that handles conversion to and from java.sql.Timestamp objects.classStringArrayConverterDeprecated.Replaced by the newArrayConverterimplementationclassStringConverterConverterimplementation that converts an incoming object into ajava.lang.Stringobject.classURLConverterConverterimplementaion that handles conversion to and from java.net.URL objects.Fields in org.apache.commons.beanutils.converters declared as Converter Modifier and Type Field Description private ConverterConverterFacade. converterprivate ConverterArrayConverter. elementConverterConstructors in org.apache.commons.beanutils.converters with parameters of type Converter Constructor Description ArrayConverter(java.lang.Class<?> defaultType, Converter elementConverter)Construct an arrayConverterwith the specified componentConverterthat throws aConversionExceptionif an error occurs.ArrayConverter(java.lang.Class<?> defaultType, Converter elementConverter, int defaultSize)Construct an arrayConverterwith the specified componentConverterthat returns a default array of the specified size (ornull) if an error occurs.ConverterFacade(Converter converter)Construct a converter which delegates to the specifiedConverterimplementation. -
Uses of Converter in org.apache.commons.beanutils.locale
Subinterfaces of Converter in org.apache.commons.beanutils.locale Modifier and Type Interface Description interfaceLocaleConverterGeneral purpose locale-sensitive data type converter that can be registered and used within the BeanUtils package to manage the conversion of objects from one type to another.Classes in org.apache.commons.beanutils.locale that implement Converter Modifier and Type Class Description classBaseLocaleConverterThe base class for all standart type locale-sensitive converters. -
Uses of Converter in org.apache.commons.beanutils.locale.converters
Classes in org.apache.commons.beanutils.locale.converters that implement Converter Modifier and Type Class Description classBigDecimalLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.math.BigDecimalobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classBigIntegerLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.math.BigIntegerobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classByteLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Byteobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classDateLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.util.Dateobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classDecimalLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Numberobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classDoubleLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Doubleobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classFloatLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.math.BigDecimalobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classIntegerLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Integerobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classLongLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Longobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classShortLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.lang.Shortobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classSqlDateLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.sql.Dateobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classSqlTimeLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.sql.Timeobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classSqlTimestampLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive String into ajava.sql.Timestampobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.classStringLocaleConverterStandardLocaleConverterimplementation that converts an incoming locale-sensitive object into ajava.lang.Stringobject, optionally using a default value or throwing aConversionExceptionif a conversion error occurs.
-