public enum DbEntityType extends java.lang.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(java.lang.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(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 © 2018 Feedzai. All Rights Reserved.