org.apache.commons.configuration
public final class PropertyConverter extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
escapeDelimiters(java.lang.String s,
char delimiter)
Escapes the delimiters that might be contained in the given string.
|
static java.lang.String |
escapeListDelimiter(java.lang.String s,
char delimiter)
Escapes the list delimiter if it is contained in the given string.
|
static java.lang.Object |
interpolate(java.lang.Object value,
AbstractConfiguration config)
Performs interpolation of the specified value.
|
static java.util.List |
split(java.lang.String s,
char delimiter)
Split a string on the specified delimiter always trimming the elements.
|
static java.util.List |
split(java.lang.String s,
char delimiter,
boolean trim)
Split a string on the specified delimiter.
|
static java.math.BigDecimal |
toBigDecimal(java.lang.Object value)
Convert the specified object into a BigDecimal.
|
static java.math.BigInteger |
toBigInteger(java.lang.Object value)
Convert the specified object into a BigInteger.
|
static java.lang.Boolean |
toBoolean(java.lang.Object value)
Convert the specified object into a Boolean.
|
static java.lang.Byte |
toByte(java.lang.Object value)
Convert the specified object into a Byte.
|
static java.util.Calendar |
toCalendar(java.lang.Object value,
java.lang.String format)
Convert the specified object into a Calendar.
|
static java.awt.Color |
toColor(java.lang.Object value)
Convert the specified object into a Color.
|
static java.util.Date |
toDate(java.lang.Object value,
java.lang.String format)
Convert the specified object into a Date.
|
static java.lang.Double |
toDouble(java.lang.Object value)
Convert the specified object into a Double.
|
static java.lang.Float |
toFloat(java.lang.Object value)
Convert the specified object into a Float.
|
static java.lang.Integer |
toInteger(java.lang.Object value)
Convert the specified object into an Integer.
|
static java.util.Iterator |
toIterator(java.lang.Object value,
char delimiter)
Return an iterator over the simple values of a composite value.
|
static java.util.Locale |
toLocale(java.lang.Object value)
Convert the specified object into a Locale.
|
static java.lang.Long |
toLong(java.lang.Object value)
Convert the specified object into a Long.
|
static java.lang.Short |
toShort(java.lang.Object value)
Convert the specified object into a Short.
|
static java.net.URL |
toURL(java.lang.Object value)
Convert the specified object into an URL.
|
public static java.lang.Boolean toBoolean(java.lang.Object value) throws ConversionException
org.apache.commons.lang.BooleanUtils
class from the
Commons Lang
project is used to perform this conversion. This class accepts some more
tokens for the boolean value of true, e.g. yes
and
on
. Please refer to the documentation of this class for more
details.value
- the value to convertConversionException
- thrown if the value cannot be converted to a booleanpublic static java.lang.Byte toByte(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a bytepublic static java.lang.Short toShort(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a shortpublic static java.lang.Integer toInteger(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to an integerpublic static java.lang.Long toLong(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a Longpublic static java.lang.Float toFloat(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a Floatpublic static java.lang.Double toDouble(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a Doublepublic static java.math.BigInteger toBigInteger(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a BigIntegerpublic static java.math.BigDecimal toBigDecimal(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a BigDecimalpublic static java.net.URL toURL(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to an URLpublic static java.util.Locale toLocale(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a Localepublic static java.util.List split(java.lang.String s, char delimiter, boolean trim)
s
- the string to splitdelimiter
- the delimitertrim
- a flag whether the single elements should be trimmedpublic static java.util.List split(java.lang.String s, char delimiter)
split(s, delimiter, true)
.s
- the string to splitdelimiter
- the delimiterpublic static java.lang.String escapeDelimiters(java.lang.String s, char delimiter)
escapeListDelimiter(String, char)
. In addition,
a single backslash will also be escaped.s
- the string with the valuedelimiter
- the list delimiter to usepublic static java.lang.String escapeListDelimiter(java.lang.String s, char delimiter)
s
- the string with the valuedelimiter
- the list delimiter to usepublic static java.awt.Color toColor(java.lang.Object value) throws ConversionException
value
- the value to convertConversionException
- thrown if the value cannot be converted to a Colorpublic static java.util.Date toDate(java.lang.Object value, java.lang.String format) throws ConversionException
value
- the value to convertformat
- the DateFormat pattern to parse String valuesConversionException
- thrown if the value cannot be converted to a Calendarpublic static java.util.Calendar toCalendar(java.lang.Object value, java.lang.String format) throws ConversionException
value
- the value to convertformat
- the DateFormat pattern to parse String valuesConversionException
- thrown if the value cannot be converted to a Calendarpublic static java.util.Iterator toIterator(java.lang.Object value, char delimiter)
value
- the value to "split"delimiter
- the delimiter for String valuespublic static java.lang.Object interpolate(java.lang.Object value, AbstractConfiguration config)
${...}
. If
this is the case, all occurrances will be substituted by their current
values.value
- the value to be interpolatedconfig
- the current configuration objectCopyright © 2001-2016. All Rights Reserved.