public static enum Storefront.FilterType extends java.lang.Enum<Storefront.FilterType>
| Enum Constant and Description |
|---|
BOOLEAN
A boolean value.
|
LIST
A list of selectable values.
|
PRICE_RANGE
A range of prices.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.FilterType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.FilterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.FilterType BOOLEAN
public static final Storefront.FilterType LIST
public static final Storefront.FilterType PRICE_RANGE
public static final Storefront.FilterType UNKNOWN_VALUE
public static Storefront.FilterType[] values()
for (Storefront.FilterType c : Storefront.FilterType.values()) System.out.println(c);
public static Storefront.FilterType 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.FilterType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.FilterType>