public enum ProductCategoryType extends java.lang.Enum<ProductCategoryType>
Clase Java para ProductCategoryType.
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
<simpleType name="ProductCategoryType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="RawProduct"/>
<enumeration value="ProcessedProduct"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PROCESSED_PRODUCT |
RAW_PRODUCT |
| Modifier and Type | Method and Description |
|---|---|
static ProductCategoryType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ProductCategoryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductCategoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductCategoryType RAW_PRODUCT
public static final ProductCategoryType PROCESSED_PRODUCT
public static ProductCategoryType[] values()
for (ProductCategoryType c : ProductCategoryType.values()) System.out.println(c);
public static ProductCategoryType 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 ProductCategoryType fromValue(java.lang.String v)
Copyright © 2014. All Rights Reserved.