Interface SelectOptionValue
-
public interface SelectOptionValue
A select option value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getHighValue()
Get the high value of the select optionString
getLowValue()
Get the low value of the select optionString
getOption()
Get the option (EQ/BT/CP/...)boolean
isInclude()
Check whether this value includes the rangeString
toSelectOptionExpression()
Convert this select option to an expression that can be used as job parameter value
-
-
-
Method Detail
-
getOption
String getOption()
Get the option (EQ/BT/CP/...)- Returns:
- option
-
isInclude
boolean isInclude()
Check whether this value includes the range- Returns:
true
if this value includes the rangefalse
if it excludes it
-
getLowValue
String getLowValue()
Get the low value of the select option- Returns:
- low value
-
getHighValue
String getHighValue()
Get the high value of the select option- Returns:
- high value
-
toSelectOptionExpression
String toSelectOptionExpression()
Convert this select option to an expression that can be used as job parameter value- Returns:
- select option expression
-
-