public static enum Table.PROPERTY extends Enum<Table.PROPERTY>
| Enum Constant and Description |
|---|
constraint
|
owner
The schema owner
|
tableColumn
|
tableColumnComment
|
tableColumnConstraint
|
tableComment
|
tableName
The table physical names
|
| Modifier and Type | Method and Description |
|---|---|
static Table.PROPERTY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.PROPERTY owner
public static final Table.PROPERTY tableName
public static final Table.PROPERTY tableColumn
public static final Table.PROPERTY constraint
public static final Table.PROPERTY tableColumnConstraint
public static final Table.PROPERTY tableColumnComment
public static final Table.PROPERTY tableComment
public static Table.PROPERTY[] values()
for (Table.PROPERTY c : Table.PROPERTY.values()) System.out.println(c);
public static Table.PROPERTY valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.