public enum LoopFormState extends Enum<LoopFormState>
LoopFormState
component stores state into the FormSupport
object.Enum Constant and Description |
---|
ITERATION
Only enough state to iterate over the source values is stored.
|
NONE
No state of any kind is stored, as if the Loop was not contained within a
Form . |
VALUES
Stores a sequence of values (obtained via a
ValueEncoder ) into the Form state. |
Modifier and Type | Method and Description |
---|---|
static LoopFormState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoopFormState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoopFormState NONE
Form
.public static final LoopFormState ITERATION
public static final LoopFormState VALUES
ValueEncoder
) into the Form state. The
source parameter is not re-acquired when the Form is submitted.public static LoopFormState[] values()
for (LoopFormState c : LoopFormState.values()) System.out.println(c);
public static LoopFormState 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.