|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<VehicleCore.Fuel>
org.ota.vehicle.VehicleCore.Fuel
public static enum VehicleCore.Fuel
Schema fragment(s) for this class:
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:restriction base="xs:string"> <xs:enumeration value="Unspecified"/> <xs:enumeration value="Diesel"/> <xs:enumeration value="Hybrid"/> <xs:enumeration value="Electric"/> <xs:enumeration value="LPG_CompressedGas"/> <xs:enumeration value="Hydrogen"/> <xs:enumeration value="MultiFuel"/> <xs:enumeration value="Petrol"/> <xs:enumeration value="Ethanol"/> </xs:restriction> </xs:simpleType>
Enum Constant Summary | |
---|---|
DIESEL
The type of fuel is diesel. |
|
ELECTRIC
The type of fuel is electric. |
|
ETHANOL
The type of fuel is ethanol. |
|
HYBRID
The type of fuel is hybrid. |
|
HYDROGEN
The type of fuel is hydrogen. |
|
LPG_COMPRESSED_GAS
The type of fuel is LPG/Compressed gas. |
|
MULTI_FUEL
The type of fuel is multi. |
|
PETROL
The type of fuel is petrol. |
|
UNSPECIFIED
The type of fuel is not known. |
Method Summary | |
---|---|
static VehicleCore.Fuel |
convert(java.lang.String value)
|
java.lang.String |
toString()
|
static VehicleCore.Fuel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static VehicleCore.Fuel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final VehicleCore.Fuel UNSPECIFIED
public static final VehicleCore.Fuel DIESEL
public static final VehicleCore.Fuel HYBRID
public static final VehicleCore.Fuel ELECTRIC
public static final VehicleCore.Fuel LPG_COMPRESSED_GAS
public static final VehicleCore.Fuel HYDROGEN
public static final VehicleCore.Fuel MULTI_FUEL
public static final VehicleCore.Fuel PETROL
public static final VehicleCore.Fuel ETHANOL
Method Detail |
---|
public static VehicleCore.Fuel[] values()
for (VehicleCore.Fuel c : VehicleCore.Fuel.values()) System.out.println(c);
public static VehicleCore.Fuel 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<VehicleCore.Fuel>
public static VehicleCore.Fuel convert(java.lang.String value)
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |