public enum EnumTrainerCardColor extends java.lang.Enum<EnumTrainerCardColor>
Modifier and Type | Field and Description |
---|---|
float |
blue |
float |
green |
float |
red |
net.minecraft.util.ResourceLocation |
resource |
Modifier and Type | Method and Description |
---|---|
static EnumTrainerCardColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTrainerCardColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTrainerCardColor BLUE
public static final EnumTrainerCardColor PINK
public static final EnumTrainerCardColor WHITE
public static final EnumTrainerCardColor GOLD
public final net.minecraft.util.ResourceLocation resource
public final float red
public final float green
public final float blue
public static EnumTrainerCardColor[] values()
for (EnumTrainerCardColor c : EnumTrainerCardColor.values()) System.out.println(c);
public static EnumTrainerCardColor 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