public enum ACTION extends Enum<ACTION>
Java class for ACTION.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ACTION">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CREATE"/>
<enumeration value="DELETE"/>
<enumeration value="UPDATE"/>
<enumeration value="MANAGE"/>
<enumeration value="RELEASE"/>
<enumeration value="CANCEL"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CANCEL |
CREATE |
DELETE |
MANAGE |
RELEASE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ACTION |
fromValue(String v) |
String |
value() |
static ACTION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACTION CREATE
public static final ACTION DELETE
public static final ACTION UPDATE
public static final ACTION MANAGE
public static final ACTION RELEASE
public static final ACTION CANCEL
public static ACTION[] values()
for (ACTION c : ACTION.values()) System.out.println(c);
public static ACTION 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()
Copyright © 2017. All rights reserved.