public enum ProductsViewType extends Enum<ProductsViewType>
| Enum Constant and Description |
|---|
CATALOG_PREMIUM |
CATALOG_STANDARD |
OFFERS_PREMIUM |
OFFERS_STANDARD |
SUMMARY |
UNIVERSAL |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ProductsViewType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProductsViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductsViewType SUMMARY
public static final ProductsViewType OFFERS_STANDARD
public static final ProductsViewType OFFERS_PREMIUM
public static final ProductsViewType CATALOG_STANDARD
public static final ProductsViewType CATALOG_PREMIUM
public static final ProductsViewType UNIVERSAL
public static ProductsViewType[] values()
for (ProductsViewType c : ProductsViewType.values()) System.out.println(c);
public static ProductsViewType 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 toString()
toString in class Enum<ProductsViewType>Copyright © 2017. All rights reserved.