Property¶
-
public class
Property
¶ Representation of a single value inside
Properties
with support for interpretation of value strings in different formats.- Author
jwienke
Constructors¶
Methods¶
asBoolean¶
-
public boolean
asBoolean
()¶ Interprets the value string as a boolean.
- Returns
true
if the property value contains a string indicatingtrue
, elsefalse
asDouble¶
-
public double
asDouble
()¶ Tries to interpret the value as a double.
- Throws
NumberFormatException – property value cannot be interpreted as a number
- Returns
double representation of the property value
asFloat¶
-
public float
asFloat
()¶ Tries to interpret the value as a float.
- Throws
NumberFormatException – property value cannot be interpreted as a number
- Returns
float representation of the property value
asInteger¶
-
public int
asInteger
()¶ Tries to interpret the value as an integer.
- Throws
NumberFormatException – property value cannot be interpreted as a number
- Returns
integer representation of the property value
asLong¶
-
public long
asLong
()¶ Tries to interpret the value as a long integer.
- Throws
NumberFormatException – property value cannot be interpreted as a number
- Returns
long integer representation of the property value