public enum StateValue extends Enum<StateValue>
Java class for stateValue.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="stateValue"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="New"/> <enumeration value="Existing"/> <enumeration value="Not in scope"/> <enumeration value="Fixed"/> <enumeration value="Recurred"/> </restriction> </simpleType>
Enum Constant and Description |
---|
EXISTING |
FIXED |
NEW |
NOT_IN_SCOPE |
RECURRED |
Modifier and Type | Method and Description |
---|---|
static StateValue |
fromValue(String v) |
String |
value() |
static StateValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateValue NEW
public static final StateValue EXISTING
public static final StateValue NOT_IN_SCOPE
public static final StateValue FIXED
public static final StateValue RECURRED
public static StateValue[] values()
for (StateValue c : StateValue.values()) System.out.println(c);
public static StateValue 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 StateValue fromValue(String v)
Copyright © 2004-2014. All Rights Reserved.