Package com.e1c.g5.v8.dt.check
Interface ICheckParameters
-
public interface ICheckParametersCheck parameters set, containing current effective values of the check (if the check is parametrized). Parameter values can be overrided in user preferences.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBoolean(String name)Returns the boolean value to which the specified key is mapped.doublegetDouble(String name)Returns the double value to which the specified key is mapped.intgetInt(String name)Returns the int value to which the specified key is mapped.longgetLong(String name)Returns the long value to which the specified key is mapped.StringgetString(String name)Returns the string value to which the specified key is mapped.Set<String>keySet()Returns aSetview of the contained parameters names.
-
-
-
Method Detail
-
getBoolean
boolean getBoolean(String name) throws WrongParameterException
Returns the boolean value to which the specified key is mapped.- Parameters:
name- the parameter name, notnull- Returns:
- parameter value, not
null - Throws:
WrongParameterException- if none or broken
-
getDouble
double getDouble(String name) throws WrongParameterException
Returns the double value to which the specified key is mapped.- Parameters:
name- the parameter name, notnull- Returns:
- parameter value, not
null - Throws:
WrongParameterException- if none or broken
-
getInt
int getInt(String name) throws WrongParameterException
Returns the int value to which the specified key is mapped.- Parameters:
name- the parameter name, notnull- Returns:
- parameter value, not
null - Throws:
WrongParameterException- if none or broken
-
getLong
long getLong(String name) throws WrongParameterException
Returns the long value to which the specified key is mapped.- Parameters:
name- the parameter name, notnull- Returns:
- parameter value, not
null - Throws:
WrongParameterException- if none or broken
-
getString
String getString(String name) throws WrongParameterException
Returns the string value to which the specified key is mapped.- Parameters:
name- the parameter name, notnull- Returns:
- parameter value, not
null - Throws:
WrongParameterException- if none or broken
-
-