Class BooleanValidator
- java.lang.Object
-
- org.esa.snap.core.param.AbstractParamValidator
-
- org.esa.snap.core.param.validators.BooleanValidator
-
- All Implemented Interfaces:
ParamValidator
public class BooleanValidator extends AbstractParamValidator
-
-
Field Summary
Fields Modifier and Type Field Description static String
FALSE_STRING
static String
TRUE_STRING
-
Fields inherited from class org.esa.snap.core.param.AbstractParamValidator
_logger
-
-
Constructor Summary
Constructors Constructor Description BooleanValidator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static Boolean
castToBoolean(Object value)
String
format(Parameter parameter, Object value)
Object
parse(Parameter parameter, String text)
Converts the given text into a value taking the given parameter information into account.void
validate(Parameter parameter, Object value)
Tests if the given value passes all constraints given in the supplied parameter information.-
Methods inherited from class org.esa.snap.core.param.AbstractParamValidator
equalValues, isAllowedNullText, isAllowedNullValue, isValueContainedInValueSet, validateThatNullValueIsAllowed, validateThatValueIsInValueSet, validateThatValuesAreInValueSet
-
-
-
-
Field Detail
-
TRUE_STRING
public static final String TRUE_STRING
- See Also:
- Constant Field Values
-
FALSE_STRING
public static final String FALSE_STRING
- See Also:
- Constant Field Values
-
-
Method Detail
-
parse
public Object parse(Parameter parameter, String text) throws ParamParseException
Description copied from interface:ParamValidator
Converts the given text into a value taking the given parameter information into account.- Parameters:
parameter
- the parameter, must not benull
text
- the text to be converted into a value, must not benull
- Returns:
- the value represented by the text
- Throws:
ParamParseException
-
format
public String format(Parameter parameter, Object value) throws ParamFormatException
Returns the givenBoolean
value as a string, according to the rules of the givenparameter
. If the value isnull
andnull value is allowed
, this method returns an empty string, otherwise aParamFormatException
will be thrown.- Parameters:
parameter
- the parameter which contains the rules to formatvalue
- the value to format- Returns:
- the value as string or an empty string.
- Throws:
ParamFormatException
- if the value isnull
andnull value is not allowed
or the value is not an instance ofBoolean
.
-
validate
public void validate(Parameter parameter, Object value) throws ParamValidateException
Description copied from interface:ParamValidator
Tests if the given value passes all constraints given in the supplied parameter information. The value can also benull
since parameters can be allowed to have the value 'null'.- Parameters:
parameter
- the parameter, must not benull
value
- the value to be tested, can benull
- Throws:
ParamValidateException
-
-