public enum ProductCategoryType extends Enum<ProductCategoryType>
| Modifier and Type | Method and Description |
|---|---|
static ProductCategoryType |
fromValue(String v) |
String |
getValue() |
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 OTHER
public static final ProductCategoryType AIRLINES
public static final ProductCategoryType ANTIQUES
public static final ProductCategoryType ART
public static final ProductCategoryType CAMERASPHOTOS
public static final ProductCategoryType CARSBOATSVEHICLESPARTS
public static final ProductCategoryType CELLPHONESTELECOM
public static final ProductCategoryType COINSPAPERMONEY
public static final ProductCategoryType COLLECTIBLES
public static final ProductCategoryType COMPUTERSNETWORKING
public static final ProductCategoryType CONSUMERELECTRONICS
public static final ProductCategoryType JEWELRYWATCHES
public static final ProductCategoryType MUSICALINSTRUMENTS
public static final ProductCategoryType REALESTATE
public static final ProductCategoryType SPORTSMEMORABILIACARDSFANSHOP
public static final ProductCategoryType STAMPS
public static final ProductCategoryType TICKETS
public static final ProductCategoryType TRAVELS
public static final ProductCategoryType GAMBLING
public static final ProductCategoryType ALCOHOL
public static final ProductCategoryType TOBACCO
public static final ProductCategoryType MONEYTRANSFER
public static final ProductCategoryType SOFTWARE
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 getValue()
public static ProductCategoryType fromValue(String v)
Copyright © 2017. All Rights Reserved.