net.sf.farrago.ddl
Enum DdlValidator.ValidatedOp
java.lang.Object
java.lang.Enum<DdlValidator.ValidatedOp>
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>
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
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