public enum Condition extends Enum<Condition>
InstructionBuilder.when(Condition, WhenCallback)
. Most conditions
pop the top element off the stack; some pop two elements.Enum Constant and Description |
---|
EQUAL
Compare two integer elements on the stack; branch if the deeper
element equal to the top element.
|
GREATER
Compare two integer elements on the stack; branch if the deeper
element is greater than the top element.
|
LESS_THAN
Compare two integer elements on the stack; branch if the deeper
element is less than the top element.
|
NON_NULL
Is the top element of the stack non-null?
|
NON_ZERO
Is the top element of the stack not the integer zero?
|
NOT_EQUAL
Compare two integer elements on the stack; branch if the deeper
element is not equal to the top element.
|
NULL
Is the top element of the stack null?
|
ZERO
Is the top element of the stack the integer zero?
|
Modifier and Type | Method and Description |
---|---|
static Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition NON_ZERO
public static final Condition LESS_THAN
public static final Condition EQUAL
public static final Condition NOT_EQUAL
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.