public enum DbEntityType extends Enum<DbEntityType>
| Enum Constant and Description |
|---|
SYSTEM_TABLE
The system table type.
|
SYSTEM_VIEW
The system view type.
|
TABLE
The table type.
|
UNMAPPED
A type that is not mapped.
|
VIEW
The view type.
|
| Modifier and Type | Method and Description |
|---|---|
static DbEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbEntityType TABLE
public static final DbEntityType VIEW
public static final DbEntityType SYSTEM_TABLE
public static final DbEntityType SYSTEM_VIEW
public static final DbEntityType UNMAPPED
public static DbEntityType[] values()
for (DbEntityType c : DbEntityType.values()) System.out.println(c);
public static DbEntityType 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 © 2014 Feedzai. All Rights Reserved.