public static enum Storefront.MetafieldValueType extends java.lang.Enum<Storefront.MetafieldValueType>
| Enum Constant and Description |
|---|
INTEGER
An integer metafield.
|
JSON_STRING
A json string metafield.
|
STRING
A string metafield.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.MetafieldValueType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.MetafieldValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.MetafieldValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.MetafieldValueType INTEGER
public static final Storefront.MetafieldValueType JSON_STRING
public static final Storefront.MetafieldValueType STRING
public static final Storefront.MetafieldValueType UNKNOWN_VALUE
public static Storefront.MetafieldValueType[] values()
for (Storefront.MetafieldValueType c : Storefront.MetafieldValueType.values()) System.out.println(c);
public static Storefront.MetafieldValueType 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.MetafieldValueType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.MetafieldValueType>