public enum ColumnAttributeKind extends Enum<ColumnAttributeKind> implements org.eclipse.emf.common.util.Enumerator
DoorsPackage.getColumnAttributeKind()
Enum Constant and Description |
---|
ABSOLUTE_NUMBER_LITERAL
The 'Absolute Number' literal object.
|
CREATED_BY_LITERAL
The 'Created By' literal object.
|
CREATED_ON_LITERAL
The 'Created On' literal object.
|
CREATED_THRU_LITERAL
The 'Created Thru' literal object.
|
LAST_MODIFIED_BY_LITERAL
The 'Last Modified By' literal object.
|
LAST_MODIFIED_ON_LITERAL
The 'Last Modified On' literal object.
|
OBJECT_HEADING_AND_OBJECT_TEXT_LITERAL
The 'Object Heading And Object Text' literal object.
|
OBJECT_HEADING_LITERAL
The 'Object Heading' literal object.
|
OBJECT_IDENTIFIER_LITERAL
The 'Object Identifier' literal object.
|
OBJECT_LEVEL_LITERAL
The 'Object Level' literal object.
|
OBJECT_NUMBER_LITERAL
The 'Object Number' literal object.
|
OBJECT_SHORT_TEXT_LITERAL
The 'Object Short Text' literal object.
|
OBJECT_TEXT_LITERAL
The 'Object Text'
literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
ABSOLUTE_NUMBER
The 'Absolute Number' literal value.
|
static int |
CREATED_BY
The 'Created By' literal value.
|
static int |
CREATED_ON
The 'Created On' literal value.
|
static int |
CREATED_THRU
The 'Created Thru' literal value.
|
static int |
LAST_MODIFIED_BY
The 'Last Modified By' literal value.
|
static int |
LAST_MODIFIED_ON
The 'Last Modified On' literal value.
|
static int |
OBJECT_HEADING
The 'Object Heading' literal value.
|
static int |
OBJECT_HEADING_AND_OBJECT_TEXT
The 'Object Heading And Object Text' literal value.
|
static int |
OBJECT_IDENTIFIER
The 'Object Identifier' literal value.
|
static int |
OBJECT_LEVEL
The 'Object Level' literal value.
|
static int |
OBJECT_NUMBER
The 'Object Number' literal value.
|
static int |
OBJECT_SHORT_TEXT
The 'Object Short Text' literal value.
|
static int |
OBJECT_TEXT
The 'Object Text' literal value.
|
static List<ColumnAttributeKind> |
VALUES
A public read-only list of all the 'Column Attribute Kind' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ColumnAttributeKind |
get(int value)
Returns the 'Column Attribute Kind' literal with the specified integer value.
|
static ColumnAttributeKind |
get(String literal)
Returns the 'Column Attribute Kind' literal with the specified literal value.
|
static ColumnAttributeKind |
getByName(String name)
Returns the 'Column Attribute Kind' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ColumnAttributeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnAttributeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnAttributeKind OBJECT_LEVEL_LITERAL
OBJECT_LEVEL
public static final ColumnAttributeKind OBJECT_IDENTIFIER_LITERAL
OBJECT_IDENTIFIER
public static final ColumnAttributeKind OBJECT_NUMBER_LITERAL
OBJECT_NUMBER
public static final ColumnAttributeKind ABSOLUTE_NUMBER_LITERAL
ABSOLUTE_NUMBER
public static final ColumnAttributeKind CREATED_BY_LITERAL
CREATED_BY
public static final ColumnAttributeKind CREATED_ON_LITERAL
CREATED_ON
public static final ColumnAttributeKind CREATED_THRU_LITERAL
CREATED_THRU
public static final ColumnAttributeKind LAST_MODIFIED_BY_LITERAL
LAST_MODIFIED_BY
public static final ColumnAttributeKind LAST_MODIFIED_ON_LITERAL
LAST_MODIFIED_ON
public static final ColumnAttributeKind OBJECT_HEADING_LITERAL
OBJECT_HEADING
public static final ColumnAttributeKind OBJECT_SHORT_TEXT_LITERAL
OBJECT_SHORT_TEXT
public static final ColumnAttributeKind OBJECT_HEADING_AND_OBJECT_TEXT_LITERAL
OBJECT_HEADING_AND_OBJECT_TEXT
public static final ColumnAttributeKind OBJECT_TEXT_LITERAL
OBJECT_TEXT
public static final int OBJECT_LEVEL
OBJECT_LEVEL_LITERAL
,
Constant Field Valuespublic static final int OBJECT_IDENTIFIER
OBJECT_IDENTIFIER_LITERAL
,
Constant Field Valuespublic static final int OBJECT_NUMBER
OBJECT_NUMBER_LITERAL
,
Constant Field Valuespublic static final int ABSOLUTE_NUMBER
ABSOLUTE_NUMBER_LITERAL
,
Constant Field Valuespublic static final int CREATED_BY
CREATED_BY_LITERAL
,
Constant Field Valuespublic static final int CREATED_ON
CREATED_ON_LITERAL
,
Constant Field Valuespublic static final int CREATED_THRU
CREATED_THRU_LITERAL
,
Constant Field Valuespublic static final int LAST_MODIFIED_BY
LAST_MODIFIED_BY_LITERAL
,
Constant Field Valuespublic static final int LAST_MODIFIED_ON
LAST_MODIFIED_ON_LITERAL
,
Constant Field Valuespublic static final int OBJECT_HEADING
OBJECT_HEADING_LITERAL
,
Constant Field Valuespublic static final int OBJECT_SHORT_TEXT
OBJECT_SHORT_TEXT_LITERAL
,
Constant Field Valuespublic static final int OBJECT_HEADING_AND_OBJECT_TEXT
public static final int OBJECT_TEXT
OBJECT_TEXT_LITERAL
,
Constant Field Valuespublic static final List<ColumnAttributeKind> VALUES
public static ColumnAttributeKind[] values()
for (ColumnAttributeKind c : ColumnAttributeKind.values()) System.out.println(c);
public static ColumnAttributeKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ColumnAttributeKind get(String literal)
literal
- the literal.null
.public static ColumnAttributeKind getByName(String name)
name
- the name.null
.public static ColumnAttributeKind get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public String toString()
toString
in class Enum<ColumnAttributeKind>