public enum CategoryApiProperty extends java.lang.Enum<CategoryApiProperty>
Java class for categoryApiProperty.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="categoryApiProperty"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="categoryID"/> <enumeration value="dateAdded"/> <enumeration value="description"/> <enumeration value="enabled"/> <enumeration value="externalID"/> <enumeration value="name"/> <enumeration value="occupation"/> <enumeration value="type"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CATEGORY_ID |
DATE_ADDED |
DESCRIPTION |
ENABLED |
EXTERNAL_ID |
NAME |
OCCUPATION |
TYPE |
Modifier and Type | Method and Description |
---|---|
static CategoryApiProperty |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CategoryApiProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoryApiProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryApiProperty CATEGORY_ID
public static final CategoryApiProperty DATE_ADDED
public static final CategoryApiProperty DESCRIPTION
public static final CategoryApiProperty ENABLED
public static final CategoryApiProperty EXTERNAL_ID
public static final CategoryApiProperty NAME
public static final CategoryApiProperty OCCUPATION
public static final CategoryApiProperty TYPE
public static CategoryApiProperty[] values()
for (CategoryApiProperty c : CategoryApiProperty.values()) System.out.println(c);
public static CategoryApiProperty 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 CategoryApiProperty fromValue(java.lang.String v)