Package com.e1c.g5.v8.dt.check
Interface ICheckParameters
- All Known Implementing Classes:
CheckParameters
,EmptyCheckParameters
public interface ICheckParameters
Check parameters set, containing current effective values of the check (if the check is parametrized).
Parameter values can be overrided in user preferences.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getBoolean
(String name) Returns the boolean value to which the specified key is mapped.double
Returns the double value to which the specified key is mapped.int
Returns the int value to which the specified key is mapped.long
Returns the long value to which the specified key is mapped.Returns the string value to which the specified key is mapped.keySet()
Returns aSet
view of the contained parameters names.
-
Method Details
-
getBoolean
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
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
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
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
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
-
keySet
Returns aSet
view of the contained parameters names.- Returns:
- parameters names, not
null
-