public static enum TableElementNode.ElementType extends java.lang.Enum<TableElementNode.ElementType>
Enum Constant and Description |
---|
AT_ADD_CHECK_CONSTRAINT |
AT_ADD_FOREIGN_KEY_CONSTRAINT |
AT_ADD_INDEX |
AT_ADD_PRIMARY_KEY_CONSTRAINT |
AT_ADD_UNIQUE_CONSTRAINT |
AT_DROP_COLUMN |
AT_DROP_CONSTRAINT |
AT_DROP_INDEX |
AT_MODIFY_COLUMN |
AT_RENAME |
AT_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static TableElementNode.ElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableElementNode.ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableElementNode.ElementType AT_UNKNOWN
public static final TableElementNode.ElementType AT_ADD_FOREIGN_KEY_CONSTRAINT
public static final TableElementNode.ElementType AT_ADD_PRIMARY_KEY_CONSTRAINT
public static final TableElementNode.ElementType AT_ADD_UNIQUE_CONSTRAINT
public static final TableElementNode.ElementType AT_ADD_CHECK_CONSTRAINT
public static final TableElementNode.ElementType AT_DROP_CONSTRAINT
public static final TableElementNode.ElementType AT_MODIFY_COLUMN
public static final TableElementNode.ElementType AT_DROP_COLUMN
public static final TableElementNode.ElementType AT_DROP_INDEX
public static final TableElementNode.ElementType AT_ADD_INDEX
public static final TableElementNode.ElementType AT_RENAME
public static TableElementNode.ElementType[] values()
for (TableElementNode.ElementType c : TableElementNode.ElementType.values()) System.out.println(c);
public static TableElementNode.ElementType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2013. All Rights Reserved.