public static enum Vehicle.EnumStateOfVehicle extends Enum<Vehicle.EnumStateOfVehicle>
| Enum Constant and Description |
|---|
VALUE_CPO |
VALUE_NEW |
VALUE_USED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Vehicle.EnumStateOfVehicle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Vehicle.EnumStateOfVehicle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Vehicle.EnumStateOfVehicle VALUE_CPO
public static final Vehicle.EnumStateOfVehicle VALUE_NEW
public static final Vehicle.EnumStateOfVehicle VALUE_USED
public static Vehicle.EnumStateOfVehicle[] values()
for (Vehicle.EnumStateOfVehicle c : Vehicle.EnumStateOfVehicle.values()) System.out.println(c);
public static Vehicle.EnumStateOfVehicle 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 nullpublic String toString()
toString in class Enum<Vehicle.EnumStateOfVehicle>Copyright © 2020. All rights reserved.