public static enum ApiParameters.PriceChange extends Enum<ApiParameters.PriceChange>
| Enum Constant and Description |
|---|
EITHER |
PRICE_DECREASED |
PRICE_INCREASED |
| Modifier and Type | Method and Description |
|---|---|
static ApiParameters.PriceChange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiParameters.PriceChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiParameters.PriceChange PRICE_INCREASED
public static final ApiParameters.PriceChange PRICE_DECREASED
public static final ApiParameters.PriceChange EITHER
public static ApiParameters.PriceChange[] values()
for (ApiParameters.PriceChange c : ApiParameters.PriceChange.values()) System.out.println(c);
public static ApiParameters.PriceChange valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.