@Deprecated
public interface PropertyContainer
| Modifier and Type | Method and Description |
|---|---|
Property<java.math.BigDecimal> |
asBigDecimal(java.math.BigDecimal defaultValue)
Deprecated.
Parse the property as a BigDecimal
|
Property<java.math.BigInteger> |
asBigInteger(java.math.BigInteger defaultValue)
Deprecated.
Parse the property as a BigInteger
|
Property<java.lang.Boolean> |
asBoolean(java.lang.Boolean defaultValue)
Deprecated.
Parse the property as a boolean
|
Property<java.lang.Byte> |
asByte(java.lang.Byte defaultValue)
Deprecated.
Parse the property as a byte
|
Property<java.lang.Double> |
asDouble(java.lang.Double defaultValue)
Deprecated.
Parse the property as a double
|
Property<java.lang.Float> |
asFloat(java.lang.Float defaultValue)
Deprecated.
Parse the property as a float
|
Property<java.lang.Integer> |
asInteger(java.lang.Integer defaultValue)
Deprecated.
Parse the property as an int
|
Property<java.lang.Long> |
asLong(java.lang.Long defaultValue)
Deprecated.
Parse the property as a Long
|
Property<java.lang.Short> |
asShort(java.lang.Short defaultValue)
Deprecated.
Parse the property as a short
|
Property<java.lang.String> |
asString(java.lang.String defaultValue)
Deprecated.
Parse the property as a string
|
<T> Property<T> |
asType(java.lang.Class<T> type,
T defaultValue)
Deprecated.
Custom parsing based on the provided type.
|
<T> Property<T> |
asType(java.util.function.Function<java.lang.String,T> type,
java.lang.String defaultValue)
Deprecated.
|
Property<java.lang.String> asString(java.lang.String defaultValue)
Property<java.lang.Integer> asInteger(java.lang.Integer defaultValue)
Property<java.lang.Long> asLong(java.lang.Long defaultValue)
Property<java.lang.Double> asDouble(java.lang.Double defaultValue)
Property<java.lang.Float> asFloat(java.lang.Float defaultValue)
Property<java.lang.Short> asShort(java.lang.Short defaultValue)
Property<java.lang.Byte> asByte(java.lang.Byte defaultValue)
Property<java.lang.Boolean> asBoolean(java.lang.Boolean defaultValue)
Property<java.math.BigDecimal> asBigDecimal(java.math.BigDecimal defaultValue)
Property<java.math.BigInteger> asBigInteger(java.math.BigInteger defaultValue)
<T> Property<T> asType(java.lang.Class<T> type, T defaultValue)
<T> Property<T> asType(java.util.function.Function<java.lang.String,T> type, java.lang.String defaultValue)