org.jikesrvm.compilers.opt.inlining
Enum InlineDecision.Code

java.lang.Object
  extended by java.lang.Enum<InlineDecision.Code>
      extended by org.jikesrvm.compilers.opt.inlining.InlineDecision.Code
All Implemented Interfaces:
Serializable, Comparable<InlineDecision.Code>
Enclosing class:
InlineDecision

private static enum InlineDecision.Code
extends Enum<InlineDecision.Code>


Enum Constant Summary
DECIDE_NO
          Symbolic constant coding internal state.
DECIDE_YES
          Symbolic constant coding internal state.
GUARDED_YES
          Symbolic constant coding internal state.
 
Method Summary
static InlineDecision.Code valueOf(String name)
          Returns the enum constant of this type with the specified name.
static InlineDecision.Code[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DECIDE_NO

public static final InlineDecision.Code DECIDE_NO
Symbolic constant coding internal state.


DECIDE_YES

public static final InlineDecision.Code DECIDE_YES
Symbolic constant coding internal state.


GUARDED_YES

public static final InlineDecision.Code GUARDED_YES
Symbolic constant coding internal state.

Method Detail

values

public static InlineDecision.Code[] 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 (InlineDecision.Code c : InlineDecision.Code.values())
    System.out.println(c);

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

valueOf

public static InlineDecision.Code 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