public enum EnumCV_FluidColor extends java.lang.Enum<EnumCV_FluidColor>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_FluidColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_FluidColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_FluidColor WHITE_COLOR_G_A12B
public static final EnumCV_FluidColor YELLOW_COLOR_G_A11D
public static final EnumCV_FluidColor LIGHT_BROWN_COLOR_111450
public static final EnumCV_FluidColor GREEN_COLOR_G_A11E
public static final EnumCV_FluidColor GRAY_COLOR_G_A12D
public static final EnumCV_FluidColor DARK_RED_COLOR_111451
public static final EnumCV_FluidColor DARK_BROWN_COLOR_111452
public static final EnumCV_FluidColor CLEAR_R_4205B
public static final EnumCV_FluidColor BROWN_COLOR_G_A12E
public static final EnumCV_FluidColor BRIGHT_RED_COLOR_111453
public static final EnumCV_FluidColor BLOOD_TINGED_COLOR_111454
public static final EnumCV_FluidColor BLACK_COLOR_G_A12C
public static EnumCV_FluidColor[] values()
for (EnumCV_FluidColor c : EnumCV_FluidColor.values()) System.out.println(c);
public static EnumCV_FluidColor 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 nullpublic java.lang.String getValue()