net.sf.farrago.ddl
Enum DdlValidator.ValidatedOp

java.lang.Object
  extended by java.lang.Enum<DdlValidator.ValidatedOp>
      extended by net.sf.farrago.ddl.DdlValidator.ValidatedOp
All Implemented Interfaces:
Serializable, Comparable<DdlValidator.ValidatedOp>
Enclosing class:
DdlValidator

private static enum DdlValidator.ValidatedOp
extends Enum<DdlValidator.ValidatedOp>


Enum Constant Summary
CREATION
           
DELETION
           
MODIFICATION
           
TRUNCATION
           
 
Method Summary
static DdlValidator.ValidatedOp valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DdlValidator.ValidatedOp[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CREATION

public static final DdlValidator.ValidatedOp CREATION

MODIFICATION

public static final DdlValidator.ValidatedOp MODIFICATION

DELETION

public static final DdlValidator.ValidatedOp DELETION

TRUNCATION

public static final DdlValidator.ValidatedOp TRUNCATION
Method Detail

values

public static final DdlValidator.ValidatedOp[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(DdlValidator.ValidatedOp c : DdlValidator.ValidatedOp.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static DdlValidator.ValidatedOp 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