public enum AccessTypeNames extends Enum<AccessTypeNames>
Java class for accessTypeNames.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="accessTypeNames"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="initializeOnly"/> <enumeration value="inputOnly"/> <enumeration value="outputOnly"/> <enumeration value="inputOutput"/> </restriction> </simpleType>
Enum Constant and Description |
---|
INITIALIZE_ONLY |
INPUT_ONLY |
INPUT_OUTPUT |
OUTPUT_ONLY |
Modifier and Type | Method and Description |
---|---|
static AccessTypeNames |
fromValue(String v) |
String |
value() |
static AccessTypeNames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessTypeNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessTypeNames INITIALIZE_ONLY
public static final AccessTypeNames INPUT_ONLY
public static final AccessTypeNames OUTPUT_ONLY
public static final AccessTypeNames INPUT_OUTPUT
public static AccessTypeNames[] values()
for (AccessTypeNames c : AccessTypeNames.values()) System.out.println(c);
public static AccessTypeNames 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 AccessTypeNames fromValue(String v)