public static enum Inline.When extends Enum<Inline.When>
Enum Constant and Description |
---|
AllArgumentsAreConstant
Inline when all the arguments are constants
|
Always
Always inline, regardless of arguments
|
ArgumentsAreConstant
Inline when the specified arguments are constants
|
AssertionsDisabled
Inline when the VM is built without Assertions (VM.VerifyAssertions == false).
|
Modifier and Type | Method and Description |
---|---|
static Inline.When |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Inline.When[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Inline.When Always
public static final Inline.When AllArgumentsAreConstant
public static final Inline.When ArgumentsAreConstant
public static final Inline.When AssertionsDisabled
public static Inline.When[] values()
for (Inline.When c : Inline.When.values()) System.out.println(c);
public static Inline.When 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 null