public static enum ExtensionManifest.ExtensionCategory extends java.lang.Enum<ExtensionManifest.ExtensionCategory>
| Enum Constant and Description |
|---|
GAME |
JAVA_LIBRARY |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static ExtensionManifest.ExtensionCategory |
fromString(java.lang.String s) |
static ExtensionManifest.ExtensionCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtensionManifest.ExtensionCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtensionManifest.ExtensionCategory NORMAL
public static final ExtensionManifest.ExtensionCategory GAME
public static final ExtensionManifest.ExtensionCategory JAVA_LIBRARY
public static ExtensionManifest.ExtensionCategory[] values()
for (ExtensionManifest.ExtensionCategory c : ExtensionManifest.ExtensionCategory.values()) System.out.println(c);
public static ExtensionManifest.ExtensionCategory 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 ExtensionManifest.ExtensionCategory fromString(java.lang.String s)