public enum PluginQuality extends java.lang.Enum<PluginQuality>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName() |
int |
getValue() |
static PluginQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginQuality VeryPoor
public static final PluginQuality Poor
public static final PluginQuality Fair
public static final PluginQuality Good
public static final PluginQuality VeryGood
public static PluginQuality[] values()
for (PluginQuality c : PluginQuality.values()) System.out.println(c);
public static PluginQuality 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 getName()
public int getValue()