Class DimensionConverter
java.lang.Object
org.apache.commons.beanutils2.converters.AbstractConverter<Dimension>
org.apache.commons.beanutils2.converters.DimensionConverter
Converter
implementation that handles conversion to and from Dimension
.
Accepts a single Integer
value, or two Integer
values separated by the character x
.
The dimensions must consist of non-negative Integer
values only.
- Since:
- 2.0.0
-
Constructor Summary
ConstructorDescriptionConstruct aDimension
Converter that throws aConversionException
if an error occurs.DimensionConverter
(Dimension defaultValue) Constructs aConverter
that will return the specified default value if a conversion error occurs. -
Method Summary
Modifier and TypeMethodDescriptionprotected <T> T
convertToType
(Class<T> type, Object value) Converts the input object into an output object of the specified type.Gets the default type thisConverter
handles.Methods inherited from class org.apache.commons.beanutils2.converters.AbstractConverter
conversionException, convert, convertArray, convertToString, getDefault, handleError, handleMissing, isUseDefault, setDefaultValue, toLowerCase, toString, toString, toTrim
-
Constructor Details
-
DimensionConverter
public DimensionConverter()Construct aDimension
Converter that throws aConversionException
if an error occurs. -
DimensionConverter
Constructs aConverter
that will return the specified default value if a conversion error occurs.- Parameters:
defaultValue
- The default value to be returned if the value to be converted is missing or an error occurs converting the value.
-
-
Method Details
-
convertToType
Converts the input object into an output object of the specified type.- Specified by:
convertToType
in classAbstractConverter<Dimension>
- Type Parameters:
T
- Target type of the conversion.- Parameters:
type
- Data type to which this value should be converted.value
- String property value to convert.- Returns:
- A
Dimension
which represents the configuration property value. - Throws:
NullPointerException
- If the value is null.NumberFormatException
- If theDimension
width or height is bigger thanInteger.MAX_VALUE
.Throwable
- if an error occurs converting to the specified type
-
getDefaultType
Gets the default type thisConverter
handles.- Specified by:
getDefaultType
in classAbstractConverter<Dimension>
- Returns:
- The default type this
Converter
handles. - Since:
- 2.0.0
-