|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<JumpKind>
de.cau.cs.kieler.krep.editors.klp.klp.JumpKind
public enum JumpKind
A representation of the literals of the enumeration 'Jump Kind', and utility methods for working with them.
KlpPackage.getJumpKind()
Enum Constant Summary | |
---|---|
JF
The 'Jf' literal object. |
|
JNZ
The 'Jnz' literal object. |
|
JT
The 'Jt' literal object. |
|
JZ
The 'Jz' literal object. |
Field Summary | |
---|---|
static int |
JF_VALUE
The 'Jf' literal value. |
static int |
JNZ_VALUE
The 'Jnz' literal value. |
static int |
JT_VALUE
The 'Jt' literal value. |
static int |
JZ_VALUE
The 'Jz' literal value. |
static List<JumpKind> |
VALUES
A public read-only list of all the 'Jump Kind' enumerators. |
Method Summary | |
---|---|
static JumpKind |
get(int value)
Returns the 'Jump Kind' literal with the specified integer value. |
static JumpKind |
get(String literal)
Returns the 'Jump Kind' literal with the specified literal value. |
static JumpKind |
getByName(String name)
Returns the 'Jump 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 JumpKind |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JumpKind[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final JumpKind JT
JT_VALUE
public static final JumpKind JF
JF_VALUE
public static final JumpKind JZ
JZ_VALUE
public static final JumpKind JNZ
JNZ_VALUE
Field Detail |
---|
public static final int JT_VALUE
If the meaning of 'Jt' literal object isn't clear, there really should be more of a description here...
JT
,
Constant Field Valuesname | = | jt |
literal | = | JT |
public static final int JF_VALUE
If the meaning of 'Jf' literal object isn't clear, there really should be more of a description here...
JF
,
Constant Field Valuesname | = | jf |
literal | = | JF |
public static final int JZ_VALUE
If the meaning of 'Jz' literal object isn't clear, there really should be more of a description here...
JZ
,
Constant Field Valuesname | = | jz |
literal | = | JZ |
public static final int JNZ_VALUE
If the meaning of 'Jnz' literal object isn't clear, there really should be more of a description here...
JNZ
,
Constant Field Valuesname | = | jnz |
literal | = | JNZ |
public static final List<JumpKind> VALUES
Method Detail |
---|
public static JumpKind[] values()
for (JumpKind c : JumpKind.values()) System.out.println(c);
public static JumpKind valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static JumpKind get(String literal)
public static JumpKind getByName(String name)
public static JumpKind get(int value)
public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<JumpKind>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |