Uses of Interface
org.apache.commons.beanutils2.Converter
Package
Description
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.
Standard implementations of the
Converter
interface that are pre-registered with
ConvertUtils
at startup time.Locale-aware extensions of the standard BeanUtils classes.
Standard implementations of the locale-aware
LocaleConverter
interface that are pre-registered with locale-aware
LocaleConvertUtils
at startup time.Contains code that relies on the
java.sql
module.Contains code that relies on the
java.sql
module.-
Uses of Converter in org.apache.commons.beanutils2
Modifier and TypeMethodDescriptionstatic <T> Converter<T>
Look up and return any registeredConverter
for the specified source and destination class; if there is no registered Converter, returnnull
.static <T> Converter<T>
Look up and return any registeredConverter
for the specified destination class; if there is no registered Converter, returnnull
.<T> Converter<T>
Looks up and return any registeredConverter
for the specified source and destination class; if there is no registered Converter, returnnull
.<T> Converter<T>
Looks up and return any registeredConverter
for the specified destination class; if there is no registered Converter, returnnull
. -
Uses of Converter in org.apache.commons.beanutils2.converters
Modifier and TypeClassDescriptionclass
BaseConverter
implementation that provides the structure for handling conversion to and from a specified type.class
GenericConverter
implementation that handles conversion to and from array objects.final class
NumberConverter
implementation that handles conversion to and from java.math.BigDecimal objects.final class
NumberConverter
implementation that handles conversion to and from java.math.BigInteger objects.final class
Converter
implementation that handles conversion to and from Boolean objects.final class
NumberConverter
implementation that handles conversion to and from java.lang.Byte objects.final class
DateTimeConverter
implementation that handles conversion to and from java.util.Calendar objects.final class
Converter
implementation that handles conversion to and from java.lang.Character objects.final class
Converter
implementation that handles conversion to and from java.lang.Class objects.class
final class
final class
DateTimeConverter
implementation that handles conversion to and from java.util.Date objects.class
Converter
implementation that handles conversion to and from date/time objects.class
final class
NumberConverter
implementation that handles conversion to and from java.lang.Double objects.final class
Converter
implementation that handles conversion to and from java.time.Duration objects.final class
EnumConverter<E extends Enum<E>>
Converter
implementation that handles conversion to and from java.lang.Enum objects.final class
Converter
implementation that handles conversion to and from java.io.File objects.final class
NumberConverter
implementation that handles conversion to and from java.lang.Float objects.class
Converter
implementation that handles conversion to and fromInetAddress
.final class
NumberConverter
implementation that handles conversion to and from java.lang.Integer objects.final class
DateTimeConverter
implementation that handles conversion to and from java.time.LocalDate objects.final class
DateTimeConverter
implementation that handles conversion to and from java.time.LocalDateTime objects.class
final class
Converter
implementation that handles conversion to and from java.time.LocalTime objects.final class
NumberConverter
implementation that handles conversion to and from java.lang.Long objects.final class
Converter
implementation that handles conversion to and from java.time.MonthDay objects.class
NumberConverter<N extends Number>
Converter
implementation that handles conversion to and from java.lang.Number objects.final class
DateTimeConverter
implementation that handles conversion to and from java.time.OffsetDateTime objects.final class
Converter
implementation that handles conversion to and from java.time.OffsetTime objects.final class
Converter
implementation that handles conversion to and from java.nio.file.Path objects.class
final class
Converter
implementation that handles conversion to and from java.time.Period objects.class
final class
NumberConverter
implementation that handles conversion to and from java.lang.Short objects.final class
final class
Converter
implementation that handles conversion to and from java.net.URI objects.final class
Converter
implementation that handles conversion to and from java.net.URL objects.final class
Converter
implementation that handles conversion to and from java.util.UUID objects.final class
Converter
implementation that handles conversion to and from java.time.Year objects.final class
Converter
implementation that handles conversion to and from java.time.YearMonth objects.final class
DateTimeConverter
implementation that handles conversion to and from java.time.ZonedDateTime objects.final class
Converter
implementation that handles conversion to and from java.time.ZoneId objects.final class
Converter
implementation that handles conversion to and from java.time.ZoneOffset objects.ModifierConstructorDescriptionArrayConverter
(Class<C> defaultType, Converter elementConverter) Constructs an arrayConverter
with the specified componentConverter
that throws aConversionException
if an error occurs.ArrayConverter
(Class<C> defaultType, Converter elementConverter, int defaultSize) Constructs an arrayConverter
with the specified componentConverter
that returns a default array of the specified size (ornull
) if an error occurs.ConverterFacade
(Converter<T> converter) Constructs a converter which delegates to the specifiedConverter
implementation. -
Uses of Converter in org.apache.commons.beanutils2.locale
Modifier and TypeInterfaceDescriptioninterface
General 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.Modifier and TypeClassDescriptionclass
The base class for all standard type locale-sensitive converters. -
Uses of Converter in org.apache.commons.beanutils2.locale.converters
Modifier and TypeClassDescriptionclass
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aBigDecimal
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aBigInteger
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aByte
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
DateLocaleConverter<D extends Date>
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aDate
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
DecimalLocaleConverter<T extends Number>
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aNumber
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aDouble
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aBigDecimal
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aInteger
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aLong
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aShort
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive object into aString
object, optionally using a default value or throwing aConversionException
if a conversion error occurs. -
Uses of Converter in org.apache.commons.beanutils2.sql.converters
Modifier and TypeClassDescriptionfinal class
DateTimeConverter
implementation that handles conversion to and from java.sql.Date objects.final class
DateTimeConverter
implementation that handles conversion to and from java.sql.Time objects.final class
DateTimeConverter
implementation that handles conversion to and from java.sql.Timestamp objects. -
Uses of Converter in org.apache.commons.beanutils2.sql.converters.locale
Modifier and TypeClassDescriptionclass
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aDate
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aTime
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.class
StandardLocaleConverter
implementation that converts an incoming locale-sensitive String into aTimestamp
object, optionally using a default value or throwing aConversionException
if a conversion error occurs.