Enum ScriptableIntegerChecker
- java.lang.Object
-
- java.lang.Enum<ScriptableIntegerChecker>
-
- org.pepstock.charba.client.callbacks.ScriptableIntegerChecker
-
- All Implemented Interfaces:
Serializable
,Comparable<ScriptableIntegerChecker>
,ScriptableResultChecker<Integer>
public enum ScriptableIntegerChecker extends Enum<ScriptableIntegerChecker> implements ScriptableResultChecker<Integer>
Checker out of the box forScriptable
s which return aInteger
.- Author:
- Andrea "Stock" Stocchero
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEGATIVE_OR_DEFAULT
NEGATIVE_OR_ZERO
POSITIVE_OR_DEFAULT
POSITIVE_OR_ZERO
VALID_OR_DEFAULT
VALID_OR_ZERO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
checkAndGet(Integer value, Integer defaultValue)
Checks and gets a value, managing the vaue of theScriptable
and the default.static ScriptableIntegerChecker
valueOf(String name)
Returns the enum constant of this type with the specified name.static ScriptableIntegerChecker[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALID_OR_ZERO
public static final ScriptableIntegerChecker VALID_OR_ZERO
-
VALID_OR_DEFAULT
public static final ScriptableIntegerChecker VALID_OR_DEFAULT
-
POSITIVE_OR_ZERO
public static final ScriptableIntegerChecker POSITIVE_OR_ZERO
-
POSITIVE_OR_DEFAULT
public static final ScriptableIntegerChecker POSITIVE_OR_DEFAULT
-
NEGATIVE_OR_ZERO
public static final ScriptableIntegerChecker NEGATIVE_OR_ZERO
-
NEGATIVE_OR_DEFAULT
public static final ScriptableIntegerChecker NEGATIVE_OR_DEFAULT
-
-
Method Detail
-
values
public static ScriptableIntegerChecker[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ScriptableIntegerChecker c : ScriptableIntegerChecker.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScriptableIntegerChecker valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
checkAndGet
public Integer checkAndGet(Integer value, Integer defaultValue)
Description copied from interface:ScriptableResultChecker
Checks and gets a value, managing the vaue of theScriptable
and the default.- Specified by:
checkAndGet
in interfaceScriptableResultChecker<Integer>
- Parameters:
value
- result of aScriptable
defaultValue
- default value for the specific option- Returns:
- a checked value, as number
-
-