public static enum GasPrices.GasType extends Enum<GasPrices.GasType>
| Modifier and Type | Method and Description |
|---|---|
static GasPrices.GasType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GasPrices.GasType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GasPrices.GasType DIESEL
public static final GasPrices.GasType E5
public static final GasPrices.GasType E10
public static GasPrices.GasType[] values()
for (GasPrices.GasType c : GasPrices.GasType.values()) System.out.println(c);
public static GasPrices.GasType 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.