Property

public class Property

Representation of a single value inside Properties with support for interpretation of value strings in different formats.

Author

jwienke

Constructors

Property

public Property(String value)

Creates a new property with the value given as a string.

Parameters

value – value string

Methods

asBoolean

public boolean asBoolean()

Interprets the value string as a boolean.

Returns

true if the property value contains a string indicating true, else false

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

asString

public String asString()

Returns the string representation of the property value.

Returns

string value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()

toString

public String toString()