Uses of Enum
org.apache.tapestry5.plastic.Condition
Packages that use Condition
Package
Description
[INTERNAL USE ONLY] Plastic implementation details; API subject to change
Plastic, Tapestry's component class transformation library based on ASM
-
Uses of Condition in org.apache.tapestry5.internal.plastic
Methods in org.apache.tapestry5.internal.plastic with parameters of type ConditionModifier and TypeMethodDescriptionInstructionBuilderImpl.doWhile
(Condition condition, WhileCallback callback) InstructionBuilderImpl.when
(Condition condition, InstructionBuilderCallback ifTrue) InstructionBuilderImpl.when
(Condition condition, WhenCallback callback) -
Uses of Condition in org.apache.tapestry5.plastic
Methods in org.apache.tapestry5.plastic that return ConditionModifier and TypeMethodDescriptionstatic Condition
Returns the enum constant of this type with the specified name.static Condition[]
Condition.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.tapestry5.plastic with parameters of type ConditionModifier and TypeMethodDescriptionInstructionBuilder.doWhile
(Condition condition, WhileCallback callback) Implements a simple loop based on a condition.InstructionBuilder.when
(Condition condition, InstructionBuilderCallback ifTrue) Simplified version ofInstructionBuilder.when(Condition, WhenCallback)
that simply executes the callback code when the condition is true and does nothing if the condition is false (the more general case).InstructionBuilder.when
(Condition condition, WhenCallback callback) Executes conditional code based on aCondition
.