public enum ButtonAction extends Enum<ButtonAction>
| Enum Constant and Description |
|---|
ADD_TO_COLLECTION |
NONE |
POST |
PUT |
REMOVE_FROM_COLLECTION |
START_PROCESS |
SUBMIT_TASK |
| Modifier and Type | Method and Description |
|---|---|
static ButtonAction |
fromScope(FormScope scope) |
String |
getValue() |
static ButtonAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ButtonAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButtonAction NONE
public static final ButtonAction SUBMIT_TASK
public static final ButtonAction START_PROCESS
public static final ButtonAction POST
public static final ButtonAction PUT
public static final ButtonAction ADD_TO_COLLECTION
public static final ButtonAction REMOVE_FROM_COLLECTION
public static ButtonAction[] values()
for (ButtonAction c : ButtonAction.values()) System.out.println(c);
public static ButtonAction 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 nullpublic String getValue()
public static ButtonAction fromScope(FormScope scope)
Copyright © 2021. All rights reserved.