public static enum DatabaseObject.DbObjectType extends Enum<DatabaseObject.DbObjectType>
| Enum Constant and Description |
|---|
COLLECTION |
COLLECTION_VIEW |
TABLE |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseObject.DbObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseObject.DbObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseObject.DbObjectType COLLECTION
public static final DatabaseObject.DbObjectType TABLE
public static final DatabaseObject.DbObjectType VIEW
public static final DatabaseObject.DbObjectType COLLECTION_VIEW
public static DatabaseObject.DbObjectType[] values()
for (DatabaseObject.DbObjectType c : DatabaseObject.DbObjectType.values()) System.out.println(c);
public static DatabaseObject.DbObjectType 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 null