public enum InitState extends Enum<InitState>
| Enum Constant and Description |
|---|
INITIALIZED
Returned by the plugin to indicate that its initialization is complete.
|
NON_INITIALIZED
Returned by the plugin to indicate that its initialization is not yet complete.
|
| Modifier and Type | Method and Description |
|---|---|
static InitState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InitState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InitState INITIALIZED
public static final InitState NON_INITIALIZED
In short, the kernel will program a new initialization round.
public static InitState[] values()
for (InitState c : InitState.values()) System.out.println(c);
public static InitState 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 nullCopyright © 2012-2015. All Rights Reserved.