net.sf.nachocalendar.customizer
Interface Customizer
public interface Customizer
Interface that must implement any class
used to read a configuration file to
get property values.
boolean | getBoolean(String key) - Returns a boolean related to the key.
|
double | getDouble(String key) - Returns a double related to the key.
|
float | getFloat(String key) - Returns a float related to the key.
|
int | getInteger(String key) - Returns an int related to the key.
|
long | getLong(String key) - Returns a long related to the key.
|
String | getString(String key) - Returns a String related to the key.
|
Set | keySet() - Returns a Set with the properties names.
|
getBoolean
public boolean getBoolean(String key)
Returns a boolean related to the key.
getDouble
public double getDouble(String key)
Returns a double related to the key.
getFloat
public float getFloat(String key)
Returns a float related to the key.
getInteger
public int getInteger(String key)
Returns an int related to the key.
getLong
public long getLong(String key)
Returns a long related to the key.
getString
public String getString(String key)
Returns a String related to the key.
keySet
public Set keySet()
Returns a Set with the properties names.