public enum PrePostOrBodyEnum extends Enum<PrePostOrBodyEnum>
CSTPackage.getPrePostOrBodyEnum()| Enum Constant and Description |
|---|
BODY_LITERAL
The 'Body' literal object.
|
POST_LITERAL
The 'Post' literal object.
|
PRE_LITERAL
The 'Pre' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
BODY
The 'Body' literal value.
|
static int |
POST
The 'Post' literal value.
|
static int |
PRE
The 'Pre' literal value.
|
static List<PrePostOrBodyEnum> |
VALUES
A public read-only list of all the 'Pre Post Or Body Enum' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static PrePostOrBodyEnum |
get(int value)
Returns the 'Pre Post Or Body Enum' literal with the specified integer value.
|
static PrePostOrBodyEnum |
get(String literal)
Returns the 'Pre Post Or Body Enum' literal with the specified literal value.
|
static PrePostOrBodyEnum |
getByName(String name)
Returns the 'Pre Post Or Body Enum' 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 PrePostOrBodyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrePostOrBodyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrePostOrBodyEnum PRE_LITERAL
PREpublic static final PrePostOrBodyEnum POST_LITERAL
POSTpublic static final PrePostOrBodyEnum BODY_LITERAL
BODYpublic static final int PRE
If the meaning of 'Pre' literal object isn't clear, there really should be more of a description here...
PRE_LITERAL,
Constant Field Valuespublic static final int POST
If the meaning of 'Post' literal object isn't clear, there really should be more of a description here...
POST_LITERAL,
Constant Field Valuespublic static final int BODY
If the meaning of 'Body' literal object isn't clear, there really should be more of a description here...
BODY_LITERAL,
Constant Field Valuespublic static final List<PrePostOrBodyEnum> VALUES
public static PrePostOrBodyEnum[] values()
for (PrePostOrBodyEnum c : PrePostOrBodyEnum.values()) System.out.println(c);
public static PrePostOrBodyEnum 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 PrePostOrBodyEnum get(String literal)
literal - the literal.null.public static PrePostOrBodyEnum getByName(String name)
name - the name.null.public static PrePostOrBodyEnum get(int value)
value - the integer value.null.public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString in class Enum<PrePostOrBodyEnum>Copyright © 2005, 2018 IBM Corporation and others. All Rights Reserved.