Enum AbstractRangeValidator.Mode
- java.lang.Object
-
- java.lang.Enum<AbstractRangeValidator.Mode>
-
- org.apache.wicket.validation.validator.AbstractRangeValidator.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractRangeValidator.Mode>
- Enclosing class:
- AbstractRangeValidator<R extends Comparable<? super R> & Serializable,V extends Serializable>
public static enum AbstractRangeValidator.Mode extends Enum<AbstractRangeValidator.Mode>
Validator mode- Author:
- igor
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getVariation()
static AbstractRangeValidator.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractRangeValidator.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MINIMUM
public static final AbstractRangeValidator.Mode MINIMUM
-
MAXIMUM
public static final AbstractRangeValidator.Mode MAXIMUM
-
RANGE
public static final AbstractRangeValidator.Mode RANGE
-
EXACT
public static final AbstractRangeValidator.Mode EXACT
-
-
Method Detail
-
values
public static AbstractRangeValidator.Mode[] 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 (AbstractRangeValidator.Mode c : AbstractRangeValidator.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractRangeValidator.Mode 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
-
getVariation
public String getVariation()
-
-