public static enum Product.CatalogVisibility extends Enum<Product.CatalogVisibility>
| Modifier and Type | Method and Description |
|---|---|
String |
jsonValue() |
static Product.CatalogVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product.CatalogVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product.CatalogVisibility VISIBLE
public static final Product.CatalogVisibility CATALOG
public static final Product.CatalogVisibility SEARCH
public static final Product.CatalogVisibility HIDDEN
public static Product.CatalogVisibility[] values()
for (Product.CatalogVisibility c : Product.CatalogVisibility.values()) System.out.println(c);
public static Product.CatalogVisibility 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 jsonValue()
Copyright © 2017 Netgrid. All rights reserved.