public static enum ContextHandler.Availability extends java.lang.Enum<ContextHandler.Availability>
Enum Constant | Description |
---|---|
AVAILABLE |
|
SHUTDOWN |
|
STARTING |
|
UNAVAILABLE |
Modifier and Type | Method | Description |
---|---|---|
static ContextHandler.Availability |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ContextHandler.Availability[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextHandler.Availability UNAVAILABLE
public static final ContextHandler.Availability STARTING
public static final ContextHandler.Availability AVAILABLE
public static final ContextHandler.Availability SHUTDOWN
public static ContextHandler.Availability[] values()
for (ContextHandler.Availability c : ContextHandler.Availability.values()) System.out.println(c);
public static ContextHandler.Availability 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 nullCopyright © 1995–2018 Webtide. All rights reserved.