public static enum SMNode.SMNodeType extends java.lang.Enum<SMNode.SMNodeType>
Enum Constant and Description |
---|
COLUMN
SMNodeType value COLUMN refers to the new column which is created under a table which can be a specific attribute or property of the table
under which it is present.
|
COMPONENT
SMNodeType value COMPONENT refers to the modular part of the system.Multiple components can be combined together.
|
ENVIRONMENT
SMNodeType value ENVIRONMENT refers to the new environment which is created under a system in metaData Repository.
|
FIELD
SMNodeType value FIELD refers to the specific part or attribute or a property of the Component.
|
SYSTEM
SMNodeType value SYSTEM refers to the new system which is created in metaData Repository.
|
TABLE
SMNodeType value TABLE refers to the new table which is created under a environment in a system in the metaData Repository.
|
Modifier and Type | Method and Description |
---|---|
static SMNode.SMNodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMNode.SMNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMNode.SMNodeType SYSTEM
public static final SMNode.SMNodeType ENVIRONMENT
public static final SMNode.SMNodeType TABLE
public static final SMNode.SMNodeType COLUMN
public static final SMNode.SMNodeType COMPONENT
public static final SMNode.SMNodeType FIELD
public static SMNode.SMNodeType[] values()
for (SMNode.SMNodeType c : SMNode.SMNodeType.values()) System.out.println(c);
public static SMNode.SMNodeType 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