public enum TestJobApiProperty extends java.lang.Enum<TestJobApiProperty>
Java class for testJobApiProperty.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="testJobApiProperty">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="jobID"/>
<enumeration value="address"/>
<enumeration value="isPublic"/>
<enumeration value="ownerID"/>
<enumeration value="title"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADDRESS |
IS_PUBLIC |
JOB_ID |
OWNER_ID |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
static TestJobApiProperty |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static TestJobApiProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestJobApiProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestJobApiProperty JOB_ID
public static final TestJobApiProperty ADDRESS
public static final TestJobApiProperty IS_PUBLIC
public static final TestJobApiProperty OWNER_ID
public static final TestJobApiProperty TITLE
public static TestJobApiProperty[] values()
for (TestJobApiProperty c : TestJobApiProperty.values()) System.out.println(c);
public static TestJobApiProperty valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String value()
public static TestJobApiProperty fromValue(java.lang.String v)