Package org.eclipse.jetty.server.handler
Enum ContextHandler.Availability
- java.lang.Object
-
- java.lang.Enum<ContextHandler.Availability>
-
- org.eclipse.jetty.server.handler.ContextHandler.Availability
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ContextHandler.Availability>
- Enclosing class:
- ContextHandler
public static enum ContextHandler.Availability extends java.lang.Enum<ContextHandler.Availability>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLE
SHUTDOWN
STARTING
STOPPED
UNAVAILABLE
-
Method Summary
All Methods Static Methods Concrete Methods 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.
-
-
-
Enum Constant Detail
-
STOPPED
public static final ContextHandler.Availability STOPPED
-
STARTING
public static final ContextHandler.Availability STARTING
-
AVAILABLE
public static final ContextHandler.Availability AVAILABLE
-
UNAVAILABLE
public static final ContextHandler.Availability UNAVAILABLE
-
SHUTDOWN
public static final ContextHandler.Availability SHUTDOWN
-
-
Method Detail
-
values
public static ContextHandler.Availability[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ContextHandler.Availability c : ContextHandler.Availability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContextHandler.Availability valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-