org.apache.wicket.validation.validator
Enum AbstractRangeValidator.Mode

java.lang.Object
  extended by java.lang.Enum<AbstractRangeValidator.Mode>
      extended by org.apache.wicket.validation.validator.AbstractRangeValidator.Mode
All Implemented Interfaces:
Serializable, Comparable<AbstractRangeValidator.Mode>
Enclosing class:
AbstractRangeValidator<R extends Comparable<R> & Serializable,V extends Serializable>

public static enum AbstractRangeValidator.Mode
extends Enum<AbstractRangeValidator.Mode>

Validator mode

Author:
igor

Enum Constant Summary
EXACT
           
MAXIMUM
           
MINIMUM
           
RANGE
           
 
Method Summary
 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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null

getVariation

public String getVariation()


Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.