public enum PlateColor extends java.lang.Enum<PlateColor>
| Enum Constant and Description |
|---|
BLACK |
BLUE |
GREEN |
LIMEGREEN |
WHITE |
YELLOW |
| Modifier and Type | Method and Description |
|---|---|
static PlateColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlateColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="BLUE") public static final PlateColor BLUE
@SerializedName(value="GREEN") public static final PlateColor GREEN
@SerializedName(value="YELLOW") public static final PlateColor YELLOW
@SerializedName(value="BLACK") public static final PlateColor BLACK
@SerializedName(value="WHITE") public static final PlateColor WHITE
@SerializedName(value="LIMEGREEN") public static final PlateColor LIMEGREEN
public static PlateColor[] values()
for (PlateColor c : PlateColor.values()) System.out.println(c);
public static PlateColor 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