public enum WebTopic extends Enum<WebTopic>
| Enum Constant and Description |
|---|
DEPLOYED |
DEPLOYING |
FAILED |
UNDEPLOYED |
UNDEPLOYING |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static WebTopic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebTopic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebTopic DEPLOYING
public static final WebTopic DEPLOYED
public static final WebTopic FAILED
public static final WebTopic UNDEPLOYING
public static final WebTopic UNDEPLOYED
public static WebTopic[] values()
for (WebTopic c : WebTopic.values()) System.out.println(c);
public static WebTopic 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 © 2006–2015 OPS4J - Open Participation Software for Java. All rights reserved.