public enum ProductType extends java.lang.Enum<ProductType>
Enum Constant and Description |
---|
CONSUMABLE
Can be purchased multiple times by a customer and is available only on the device from
which it is purchased.
|
ENTITLED
Can be purchased only one time by a customer and is available on all compatible devices
registered to the customer account.
|
SUBSCRIPTION
It is bound by a period of time and is available on all eligible devices registered to the customer
account.
|
Modifier and Type | Method and Description |
---|---|
static ProductType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductType CONSUMABLE
public static final ProductType ENTITLED
public static final ProductType SUBSCRIPTION
public static ProductType[] values()
for (ProductType c : ProductType.values()) System.out.println(c);
public static ProductType 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 null