public enum EnumCurryRating extends java.lang.Enum<EnumCurryRating>
Enum Constant and Description |
---|
CHARIZARD |
COPPERAJAH |
KOFFING |
MILCERY |
WOBBUFFET |
Modifier and Type | Field and Description |
---|---|
int |
expBoost |
int |
happinessBoost |
double |
hpHeal |
boolean |
ppRestore |
boolean |
statusCure |
Modifier and Type | Method and Description |
---|---|
ExperienceGainType |
getGainType() |
java.lang.String |
getLocalizedName() |
static EnumCurryRating |
ratingFromOrdinal(int ordinal) |
static EnumCurryRating |
ratingFromQuality(int quality) |
static EnumCurryRating |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCurryRating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCurryRating KOFFING
public static final EnumCurryRating WOBBUFFET
public static final EnumCurryRating MILCERY
public static final EnumCurryRating COPPERAJAH
public static final EnumCurryRating CHARIZARD
public final double hpHeal
public final boolean ppRestore
public final boolean statusCure
public final int expBoost
public final int happinessBoost
public static EnumCurryRating[] values()
for (EnumCurryRating c : EnumCurryRating.values()) System.out.println(c);
public static EnumCurryRating 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 static EnumCurryRating ratingFromQuality(int quality)
public static EnumCurryRating ratingFromOrdinal(int ordinal)
public java.lang.String getLocalizedName()
public ExperienceGainType getGainType()