|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Condition> org.apache.tapestry5.plastic.Condition
public enum Condition
Condition used with InstructionBuilder.when(Condition, WhenCallback)
. Most conditions
pop the top element off the stack; some pop two elements.
Enum Constant Summary | |
---|---|
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? |
Method Summary | |
---|---|
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. |
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 |
---|
public static final Condition NULL
public static final Condition NON_NULL
public static final Condition ZERO
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 final Condition GREATER
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |