public static enum Storefront.SearchType extends java.lang.Enum<Storefront.SearchType>
| Enum Constant and Description |
|---|
ARTICLE
Returns matching articles.
|
PAGE
Returns matching pages.
|
PRODUCT
Returns matching products.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.SearchType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.SearchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.SearchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.SearchType ARTICLE
public static final Storefront.SearchType PAGE
public static final Storefront.SearchType PRODUCT
public static final Storefront.SearchType UNKNOWN_VALUE
public static Storefront.SearchType[] values()
for (Storefront.SearchType c : Storefront.SearchType.values()) System.out.println(c);
public static Storefront.SearchType 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 static Storefront.SearchType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.SearchType>