public static enum DBTable.EntityBaseType extends java.lang.Enum<DBTable.EntityBaseType>
Enum Constant and Description |
---|
ENTITY
ENTITY EntityBaseType is used to refer, when the node we access is a Table.
|
ENTITY_ATTRIBUTE
ENTITY_ATTRIBUTE EntityBaseType is used to refer, when the node we access is a Column.
|
ENTITY_ELEMENT
ENTITY_ELEMENT EntityBaseType is used to refer, when the node we access is a Column and in turn which itself is a Table.
|
ENTITY_ROOT
ENTITY_ROOT EntityBaseType is used to refer, when the node we access is a Root or ParentTable.
|
Modifier and Type | Method and Description |
---|---|
static DBTable.EntityBaseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBTable.EntityBaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBTable.EntityBaseType ENTITY
public static final DBTable.EntityBaseType ENTITY_ROOT
public static final DBTable.EntityBaseType ENTITY_ELEMENT
public static final DBTable.EntityBaseType ENTITY_ATTRIBUTE
public static DBTable.EntityBaseType[] values()
for (DBTable.EntityBaseType c : DBTable.EntityBaseType.values()) System.out.println(c);
public static DBTable.EntityBaseType 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