public static enum SMColumn.SMColumnType extends java.lang.Enum<SMColumn.SMColumnType>
Enum Constant and Description |
---|
ENTITY
Entity SMColumnType is used to refer to the root element.Entity can
be a table or node.
|
ENTITY_ATTRIBUTE
Entity_Attribute SMColumnType is used to refer to the specific
columns or properties of a particular entity.Entity attribute can be
a column.
|
ENTITY_ELEMENT
Entity_Element SMColumnType can be a property of the Entity which can
have zero or more occurrences.
|
Modifier and Type | Method and Description |
---|---|
static SMColumn.SMColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMColumn.SMColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMColumn.SMColumnType ENTITY
public static final SMColumn.SMColumnType ENTITY_ATTRIBUTE
public static final SMColumn.SMColumnType ENTITY_ELEMENT
public static SMColumn.SMColumnType[] values()
for (SMColumn.SMColumnType c : SMColumn.SMColumnType.values()) System.out.println(c);
public static SMColumn.SMColumnType 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