public static enum Storefront.UnitPriceMeasurementMeasuredType extends java.lang.Enum<Storefront.UnitPriceMeasurementMeasuredType>
| Enum Constant and Description |
|---|
AREA
Unit of measurements representing areas.
|
LENGTH
Unit of measurements representing lengths.
|
UNKNOWN_VALUE |
VOLUME
Unit of measurements representing volumes.
|
WEIGHT
Unit of measurements representing weights.
|
| Modifier and Type | Method and Description |
|---|---|
static Storefront.UnitPriceMeasurementMeasuredType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.UnitPriceMeasurementMeasuredType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.UnitPriceMeasurementMeasuredType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.UnitPriceMeasurementMeasuredType AREA
public static final Storefront.UnitPriceMeasurementMeasuredType LENGTH
public static final Storefront.UnitPriceMeasurementMeasuredType VOLUME
public static final Storefront.UnitPriceMeasurementMeasuredType WEIGHT
public static final Storefront.UnitPriceMeasurementMeasuredType UNKNOWN_VALUE
public static Storefront.UnitPriceMeasurementMeasuredType[] values()
for (Storefront.UnitPriceMeasurementMeasuredType c : Storefront.UnitPriceMeasurementMeasuredType.values()) System.out.println(c);
public static Storefront.UnitPriceMeasurementMeasuredType 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.UnitPriceMeasurementMeasuredType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.UnitPriceMeasurementMeasuredType>