public enum EnumCM_FluidColor extends java.lang.Enum<EnumCM_FluidColor>
| Enum Constant and Description |
|---|
BLACK_COLOR |
BLOOD_TINGED_COLOR |
BRIGHT_RED_COLOR |
BROWN_COLOR |
CLEAR |
DARK_BROWN_COLOR |
DARK_RED_COLOR |
GRAY_COLOR |
GREEN_COLOR |
LIGHT_BROWN_COLOR |
WHITE_COLOR |
YELLOW_COLOR |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_FluidColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_FluidColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_FluidColor WHITE_COLOR
public static final EnumCM_FluidColor YELLOW_COLOR
public static final EnumCM_FluidColor LIGHT_BROWN_COLOR
public static final EnumCM_FluidColor GREEN_COLOR
public static final EnumCM_FluidColor GRAY_COLOR
public static final EnumCM_FluidColor DARK_RED_COLOR
public static final EnumCM_FluidColor DARK_BROWN_COLOR
public static final EnumCM_FluidColor CLEAR
public static final EnumCM_FluidColor BROWN_COLOR
public static final EnumCM_FluidColor BRIGHT_RED_COLOR
public static final EnumCM_FluidColor BLOOD_TINGED_COLOR
public static final EnumCM_FluidColor BLACK_COLOR
public static EnumCM_FluidColor[] values()
for (EnumCM_FluidColor c : EnumCM_FluidColor.values()) System.out.println(c);
public static EnumCM_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()