static java.lang.Object |
PropertyConverter.to(java.lang.Class<?> cls,
java.lang.Object value,
DefaultConversionHandler convHandler) |
Converts the specified value object to the given target data class.
|
static java.math.BigDecimal |
PropertyConverter.toBigDecimal(java.lang.Object value) |
Converts the specified object into a BigDecimal.
|
static java.math.BigInteger |
PropertyConverter.toBigInteger(java.lang.Object value) |
Converts the specified object into a BigInteger.
|
static java.lang.Boolean |
PropertyConverter.toBoolean(java.lang.Object value) |
Converts the specified object into a Boolean.
|
static java.lang.Byte |
PropertyConverter.toByte(java.lang.Object value) |
Converts the specified object into a Byte.
|
static java.util.Calendar |
PropertyConverter.toCalendar(java.lang.Object value,
java.lang.String format) |
Converts the specified object into a Calendar.
|
static java.lang.Character |
PropertyConverter.toCharacter(java.lang.Object value) |
Converts the specified value object to a Character .
|
static java.awt.Color |
PropertyConverter.toColor(java.lang.Object value) |
Converts the specified object into a Color.
|
static java.util.Date |
PropertyConverter.toDate(java.lang.Object value,
java.lang.String format) |
Converts the specified object into a Date.
|
static java.lang.Double |
PropertyConverter.toDouble(java.lang.Object value) |
Converts the specified object into a Double.
|
static java.time.Duration |
PropertyConverter.toDuration(java.lang.Object value) |
Converts the specified object into a Duration.
|
(package private) static <E extends java.lang.Enum<E>> E |
PropertyConverter.toEnum(java.lang.Object value,
java.lang.Class<E> cls) |
Converts the specified value into an Enum .
|
static java.io.File |
PropertyConverter.toFile(java.lang.Object value) |
Converts the specified object into a File.
|
static java.lang.Float |
PropertyConverter.toFloat(java.lang.Object value) |
Converts the specified object into a Float.
|
(package private) static java.net.InetAddress |
PropertyConverter.toInetAddress(java.lang.Object value) |
Converts the specified value into an internet address.
|
static java.lang.Integer |
PropertyConverter.toInteger(java.lang.Object value) |
Converts the specified object into an Integer.
|
(package private) static java.lang.Object |
PropertyConverter.toInternetAddress(java.lang.Object value,
java.lang.String targetClassName) |
Converts the specified value into an email address with the given class name.
|
static java.util.Locale |
PropertyConverter.toLocale(java.lang.Object value) |
Converts the specified object into a Locale.
|
static java.lang.Long |
PropertyConverter.toLong(java.lang.Object value) |
Converts the specified object into a Long.
|
(package private) static java.lang.Number |
PropertyConverter.toNumber(java.lang.Object value,
java.lang.Class<?> targetClass) |
Tries to convert the specified object into a number object.
|
static java.nio.file.Path |
PropertyConverter.toPath(java.lang.Object value) |
Converts the specified object into a Path.
|
static java.util.regex.Pattern |
PropertyConverter.toPattern(java.lang.Object value) |
Converts the specified object into a Pattern.
|
static java.lang.Short |
PropertyConverter.toShort(java.lang.Object value) |
Converts the specified object into a Short.
|
static java.net.URI |
PropertyConverter.toURI(java.lang.Object value) |
Converts the specified object into an URI.
|
static java.net.URL |
PropertyConverter.toURL(java.lang.Object value) |
Converts the specified object into an URL.
|