public enum AlterTableType extends java.lang.Enum<AlterTableType>
Enum Constant and Description |
---|
ADD
La sentència ALTER TABLE afegirà les restriccions a la taula.
|
DROP
La sentència ALTER TABLE treurà les restriccions de la taula.
|
Modifier and Type | Method and Description |
---|---|
static AlterTableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlterTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlterTableType ADD
public static final AlterTableType DROP
public static AlterTableType[] values()
for (AlterTableType c : AlterTableType.values()) System.out.println(c);
public static AlterTableType 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 null