public static enum Location.Handler extends Enum<Location.Handler>
| Enum Constant and Description |
|---|
WEBLOGIC_HANDLER
WebLogic handler
|
| Modifier and Type | Method and Description |
|---|---|
static Location.Handler |
fromValue(String value)
Create a Handler instance from a string representation.
|
String |
toString() |
String |
value()
Return the string representation of this enum value.
|
static Location.Handler |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Location.Handler[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Location.Handler WEBLOGIC_HANDLER
public static Location.Handler[] values()
for (Location.Handler c : Location.Handler.values())
System.out.println(c);
public static Location.Handler 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 nullpublic String toString()
toString in class Enum<Location.Handler>public String value()
public static Location.Handler fromValue(String value)
value - string value of a Handler