public static enum Plugin.InitState extends Enum<Plugin.InitState>
| Enum Constant and Description |
|---|
failed
when something is wrong and should throw an error
|
ok
when plugin can be executed
|
skip
when the plugin execution should be skipped
|
| Modifier and Type | Method and Description |
|---|---|
static Plugin.InitState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.InitState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.InitState failed
public static final Plugin.InitState skip
public static final Plugin.InitState ok
public static Plugin.InitState[] values()
for (Plugin.InitState c : Plugin.InitState.values()) System.out.println(c);
public static Plugin.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 © 2009–2013 CodeLutin. All rights reserved.