public enum EFormTargetState extends Enum<EFormTargetState>
SUBMIT
, ie. setting the state to
RECEIVED
when a form is submitted for the first time.Enum Constant and Description |
---|
CURRENT
The current state is not changed.
|
CUSTOM
The new state for the form is read from the parameter
xfc-pp-state . |
SAVE
Form is put into the special
SAVED state. |
SUBMIT
When the form is submitted normally.
|
Modifier and Type | Method and Description |
---|---|
static EFormTargetState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EFormTargetState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFormTargetState SAVE
SAVED
state.public static final EFormTargetState SUBMIT
RECEIVED
(when newly
submitted), or the resubmission state (when submitted again).public static final EFormTargetState CURRENT
RECEIVED
.public static final EFormTargetState CUSTOM
xfc-pp-state
.public static EFormTargetState[] values()
for (EFormTargetState c : EFormTargetState.values()) System.out.println(c);
public static EFormTargetState 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 nullCopyright © 2019 XIMA MEDIA GmbH. All rights reserved.