public enum EmbeddedStatus extends java.lang.Enum<EmbeddedStatus>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isDown() |
boolean |
isUp() |
static EmbeddedStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmbeddedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmbeddedStatus up
public static final EmbeddedStatus down
public static EmbeddedStatus[] values()
for (EmbeddedStatus c : EmbeddedStatus.values()) System.out.println(c);
public static EmbeddedStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isUp()
public boolean isDown()