|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum
com.ace.mws.plugins.PluginState
public enum PluginState extends Enum
Represents the current state of a plugin.
| Enum Constant Summary | |
|---|---|
ERRORED
|
|
PAUSED
|
|
STARTED
|
|
STOPPED
|
|
| Field Summary | |
|---|---|
private String |
str
Represents the current state of a plugin. |
| Method Summary | |
|---|---|
private def
|
PluginState(String str)
|
String
|
toString()
Returns a human-readable string of the state, such as "Paused" for PAUSED. |
PluginState
|
valueOf(String name)
Returns the enum constant of this type with the specified name. |
PluginState[]
|
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Enum | |
|---|---|
| name, equals, toString, hashCode, compareTo, compareTo, valueOf, getDeclaringClass, ordinal, wait, wait, wait, getClass, notify, notifyAll |
| Methods inherited from class Object | |
|---|---|
| wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
| Enum Constant Detail |
|---|
PluginState ERRORED
PluginState PAUSED
PluginState STARTED
PluginState STOPPED
| Field Detail |
|---|
private String str
| Method Detail |
|---|
private def PluginState(String str)
de public public String toString()
PluginState valueOf(String name)
PluginState[] values()
Groovy Documentation