public static enum Platform.Component extends Enum<Platform.Component>
Platform
.Enum Constant and Description |
---|
API
The abstraction layer for plugins.
|
GAME
The platform the
IMPLEMENTATION is based on. |
IMPLEMENTATION
The implementation of the
API component. |
Modifier and Type | Method and Description |
---|---|
static Platform.Component |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform.Component[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.Component GAME
IMPLEMENTATION
is based on.public static final Platform.Component API
public static final Platform.Component IMPLEMENTATION
API
component.public static Platform.Component[] values()
for (Platform.Component c : Platform.Component.values()) System.out.println(c);
public static Platform.Component valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null