de.cau.cs.kieler.krep.editors.klp.klp
Enum JumpKind

java.lang.Object
  extended by java.lang.Enum<JumpKind>
      extended by de.cau.cs.kieler.krep.editors.klp.klp.JumpKind
All Implemented Interfaces:
Serializable, Comparable<JumpKind>, Enumerator

public enum JumpKind
extends Enum<JumpKind>
implements Enumerator

A representation of the literals of the enumeration 'Jump Kind', and utility methods for working with them.

See Also:
KlpPackage.getJumpKind()
Rating red
Generated:
This code was automatically generated.
Model element

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

JT

public static final JumpKind JT
The 'Jt' literal object.

See Also:
JT_VALUE
Generated:
This code was automatically generated.
Ordered

JF

public static final JumpKind JF
The 'Jf' literal object.

See Also:
JF_VALUE
Generated:
This code was automatically generated.
Ordered

JZ

public static final JumpKind JZ
The 'Jz' literal object.

See Also:
JZ_VALUE
Generated:
This code was automatically generated.
Ordered

JNZ

public static final JumpKind JNZ
The 'Jnz' literal object.

See Also:
JNZ_VALUE
Generated:
This code was automatically generated.
Ordered
Field Detail

JT_VALUE

public static final int JT_VALUE
The 'Jt' literal value.

If the meaning of 'Jt' literal object isn't clear, there really should be more of a description here...

See Also:
JT, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=jt
literal=JT
Ordered

JF_VALUE

public static final int JF_VALUE
The 'Jf' literal value.

If the meaning of 'Jf' literal object isn't clear, there really should be more of a description here...

See Also:
JF, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=jf
literal=JF
Ordered

JZ_VALUE

public static final int JZ_VALUE
The 'Jz' literal value.

If the meaning of 'Jz' literal object isn't clear, there really should be more of a description here...

See Also:
JZ, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=jz
literal=JZ
Ordered

JNZ_VALUE

public static final int JNZ_VALUE
The 'Jnz' literal value.

If the meaning of 'Jnz' literal object isn't clear, there really should be more of a description here...

See Also:
JNZ, Constant Field Values
Generated:
This code was automatically generated.
Model element:
name=jnz
literal=JNZ
Ordered

VALUES

public static final List<JumpKind> VALUES
A public read-only list of all the 'Jump Kind' enumerators.

Generated:
This code was automatically generated.
Method Detail

values

public static JumpKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (JumpKind c : JumpKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JumpKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

get

public static JumpKind get(String literal)
Returns the 'Jump Kind' literal with the specified literal value.

Generated:
This code was automatically generated.

getByName

public static JumpKind getByName(String name)
Returns the 'Jump Kind' literal with the specified name.

Generated:
This code was automatically generated.

get

public static JumpKind get(int value)
Returns the 'Jump Kind' literal with the specified integer value.

Generated:
This code was automatically generated.

getValue

public int getValue()

Specified by:
getValue in interface Enumerator
Generated:
This code was automatically generated.

getName

public String getName()

Specified by:
getName in interface Enumerator
Generated:
This code was automatically generated.

getLiteral

public String getLiteral()

Specified by:
getLiteral in interface Enumerator
Generated:
This code was automatically generated.

toString

public String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class Enum<JumpKind>
Generated:
This code was automatically generated.