Package com.ads.api.beans.sm
Enum Class SMColumn.SMColumnType
- All Implemented Interfaces:
Serializable,Comparable<SMColumn.SMColumnType>,Constable
- Enclosing class:
- SMColumn
The constants of this enumerated type are used to specify the ColumnType
such as Tables, Columns and Columns being treated as Tables.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEntity SMColumnType is used to refer to the root element.Entity can be a table or node.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 SMColumnType can be a property of the Entity which can have zero or more occurrences.FIELD SMColumnType can be a property of the COMPONENT which can have zero or more occurrences. -
Method Summary
Modifier and TypeMethodDescriptionstatic SMColumn.SMColumnTypeReturns the enum constant of this class with the specified name.static SMColumn.SMColumnType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. -
FIELD
FIELD SMColumnType can be a property of the COMPONENT which can have zero or more occurrences.
A Field provides information about, and dynamic access to, a component.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-