public enum TomcatStatus extends java.lang.Enum<TomcatStatus>
| Enum Constant and Description |
|---|
AFTER_DESTROY |
AFTER_INIT |
AFTER_START |
AFTER_STOP |
BEFORE_DESTROY |
BEFORE_INIT |
BEFORE_START |
BEFORE_STOP |
CONFIGURE_START |
CONFIGURE_STOP |
ERROR |
PERIODIC |
START |
STOP |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static TomcatStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TomcatStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TomcatStatus ERROR
public static final TomcatStatus UNKNOWN
public static final TomcatStatus BEFORE_INIT
public static final TomcatStatus AFTER_INIT
public static final TomcatStatus START
public static final TomcatStatus AFTER_START
public static final TomcatStatus BEFORE_START
public static final TomcatStatus STOP
public static final TomcatStatus BEFORE_STOP
public static final TomcatStatus AFTER_STOP
public static final TomcatStatus AFTER_DESTROY
public static final TomcatStatus BEFORE_DESTROY
public static final TomcatStatus PERIODIC
public static final TomcatStatus CONFIGURE_START
public static final TomcatStatus CONFIGURE_STOP
public static TomcatStatus[] values()
for (TomcatStatus c : TomcatStatus.values()) System.out.println(c);
public static TomcatStatus 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 java.lang.String toString()
toString in class java.lang.Enum<TomcatStatus>