public enum StateType extends Enum<StateType>
Enum Constant and Description |
---|
NON_TRANSACTIONAL |
OPAQUE |
TRANSACTIONAL |
Modifier and Type | Method and Description |
---|---|
static StateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateType NON_TRANSACTIONAL
public static final StateType TRANSACTIONAL
public static final StateType OPAQUE
public static StateType[] values()
for (StateType c : StateType.values()) System.out.println(c);
public static StateType 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 The Apache Software Foundation. All rights reserved.