public enum StandardAction extends Enum<StandardAction>
Java class for standardAction.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="standardAction">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="update placeholder"/>
<enumeration value="save placeholder"/>
<enumeration value="delete group"/>
<enumeration value="new group"/>
<enumeration value="delete info"/>
<enumeration value="new info"/>
<enumeration value="create snippet"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CREATE_SNIPPET |
DELETE_GROUP |
DELETE_INFO |
NEW_GROUP |
NEW_INFO |
SAVE_PLACEHOLDER |
UPDATE_PLACEHOLDER |
| Modifier and Type | Method and Description |
|---|---|
static StandardAction |
fromValue(String v) |
String |
value() |
static StandardAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardAction UPDATE_PLACEHOLDER
public static final StandardAction SAVE_PLACEHOLDER
public static final StandardAction DELETE_GROUP
public static final StandardAction NEW_GROUP
public static final StandardAction DELETE_INFO
public static final StandardAction NEW_INFO
public static final StandardAction CREATE_SNIPPET
public static StandardAction[] values()
for (StandardAction c : StandardAction.values()) System.out.println(c);
public static StandardAction 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 value()
public static StandardAction fromValue(String v)
Copyright © 2017 SAP SE. All Rights Reserved.