Class | Description |
---|---|
BigDecimalConverter |
Converter, converting from String to BigDecimal, the supported format is one of the following:
232573527352.76352753
-23257352.735276352753
-0xFFFFFF (integral numbers only)
-0XFFFFAC (integral numbers only)
0xFFFFFF (integral numbers only)
0XFFFFAC (integral numbers only)
|
BigIntegerConverter |
Converter, converting from String to BigInteger, the supported format is one of the following:
0xFFFFFF
0XFFFFAC
23257352735276352753
-0xFFFFFF
-0XFFFFAC
-23257352735276352753
|
BooleanConverter |
Converter, converting from String to Boolean.
|
ByteConverter |
Converter, converting from String to Byte, the supported format is one of the following:
123 (byte value)
0xFF (byte value)
0XDF (byte value)
0D1 (byte value)
-123 (byte value)
-0xFF (byte value)
-0XDF (byte value)
-0D1 (byte value)
MIN_VALUE (ignoring case)
MIN (ignoring case)
MAX_VALUE (ignoring case)
MAX (ignoring case)
|
CharConverter |
Converter, converting from String to Character, the supported format is one of the following:
'a'
123 (byte value)
0xFF (byte value)
0XDF (byte value)
0D1 (byte value)
|
ClassConverter |
Converter, converting from String to Class, hereby using the following classloaders:
The current ThreadContext ClassLoader
The Classloader of this class
The system Classloader
|
CurrencyConverter |
Converter, converting from String to Currency, the supported format is one of the following:
CHF (currency code)
123 (numeric currency value >
= 0)
DE (ISO 2-digit country)
de_DE, de_DE_123 (Locale)
|
DoubleConverter |
Converter, converting from String to Double, using the Java number syntax:
(-)?
|
EnumConverter<T> |
Converter, converting from String to tge given enum type.
|
FloatConverter |
Converter, converting from String to Float, using the Java number syntax:
(-)?
|
IntegerConverter |
Converter, converting from String to Integer, the supported format is one of the following:
123 (byte value)
0xFF (byte value)
0XDF (byte value)
0D1 (byte value)
-123 (byte value)
-0xFF (byte value)
-0XDF (byte value)
-0D1 (byte value)
MIN_VALUE (ignoring case)
MIN (ignoring case)
MAX_VALUE (ignoring case)
MAX (ignoring case)
|
LongConverter |
Converter, converting from String to Long, the supported format is one of the following:
123 (byte value)
0xFF (byte value)
0XDF (byte value)
0D1 (byte value)
-123 (byte value)
-0xFF (byte value)
-0XDF (byte value)
-0D1 (byte value)
MIN_VALUE (ignoring case)
MIN (ignoring case)
MAX_VALUE (ignoring case)
MAX (ignoring case)
|
NumberConverter |
Converter, converting from String to Number.
|
ShortConverter |
Converter, converting from String to Short, the supported format is one of the following:
123 (byte value)
0xFF (byte value)
0XDF (byte value)
0D1 (byte value)
-123 (byte value)
-0xFF (byte value)
-0XDF (byte value)
-0D1 (byte value)
MIN_VALUE (ignoring case)
MIN (ignoring case)
MAX_VALUE (ignoring case)
MAX (ignoring case)
|
URIConverter |
Converter, converting from String to URI, using new URI(value).
|
URLConverter |
Converter, converting from String to URI, using new URL(value).
|
Copyright © 2014–2016 Apache Software Foundation. All rights reserved.