public enum ProductCategoryType extends 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(String v) |
String |
value() |
static ProductCategoryType |
valueOf(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(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 ProductCategoryType fromValue(String v)
Copyright © 2015. All Rights Reserved.