Enum CometPreviewResultProperties.PriceProperty
- java.lang.Object
-
- java.lang.Enum<CometPreviewResultProperties.PriceProperty>
-
- com.priint.pubserver.comet.bridge.preview.CometPreviewResultProperties.PriceProperty
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometPreviewResultProperties.PriceProperty>
- Enclosing class:
- CometPreviewResultProperties
public static enum CometPreviewResultProperties.PriceProperty extends java.lang.Enum<CometPreviewResultProperties.PriceProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMOUNTCURRENCYITEMPRICELABELLISTPRICEMINORDERQUANTITYOLDITEMPRICEOLDPRICEPACKAGINGUNITPRICEPRICEUNITQUANTITYOFPACKAGINGUNITVALIDFROMVALIDTO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CometPreviewResultProperties.PricePropertyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometPreviewResultProperties.PriceProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AMOUNT
public static final CometPreviewResultProperties.PriceProperty AMOUNT
-
CURRENCY
public static final CometPreviewResultProperties.PriceProperty CURRENCY
-
ITEMPRICE
public static final CometPreviewResultProperties.PriceProperty ITEMPRICE
-
LABEL
public static final CometPreviewResultProperties.PriceProperty LABEL
-
LISTPRICE
public static final CometPreviewResultProperties.PriceProperty LISTPRICE
-
MINORDERQUANTITY
public static final CometPreviewResultProperties.PriceProperty MINORDERQUANTITY
-
OLDITEMPRICE
public static final CometPreviewResultProperties.PriceProperty OLDITEMPRICE
-
OLDPRICE
public static final CometPreviewResultProperties.PriceProperty OLDPRICE
-
PACKAGINGUNIT
public static final CometPreviewResultProperties.PriceProperty PACKAGINGUNIT
-
PRICE
public static final CometPreviewResultProperties.PriceProperty PRICE
-
PRICEUNIT
public static final CometPreviewResultProperties.PriceProperty PRICEUNIT
-
QUANTITYOFPACKAGINGUNIT
public static final CometPreviewResultProperties.PriceProperty QUANTITYOFPACKAGINGUNIT
-
VALIDFROM
public static final CometPreviewResultProperties.PriceProperty VALIDFROM
-
VALIDTO
public static final CometPreviewResultProperties.PriceProperty VALIDTO
-
-
Method Detail
-
values
public static CometPreviewResultProperties.PriceProperty[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CometPreviewResultProperties.PriceProperty c : CometPreviewResultProperties.PriceProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometPreviewResultProperties.PriceProperty valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-