public static enum HttpReconfigurator.HTTPKeys extends java.lang.Enum<HttpReconfigurator.HTTPKeys>
Enum Constant and Description |
---|
INITIAL_STATE
The initial state used in name creation requests.
|
NAME
The service name that must be present in every request.
|
QID
Request ID.
|
TYPE
The request type that must be present in every request and must be
one of the ones specified in
HttpReconfigurator.HTTPRequestTypes . |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
label |
Modifier and Type | Method and Description |
---|---|
static HttpReconfigurator.HTTPKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpReconfigurator.HTTPKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpReconfigurator.HTTPKeys TYPE
HttpReconfigurator.HTTPRequestTypes
.public static final HttpReconfigurator.HTTPKeys NAME
public static final HttpReconfigurator.HTTPKeys INITIAL_STATE
public static final HttpReconfigurator.HTTPKeys QID
public static HttpReconfigurator.HTTPKeys[] values()
for (HttpReconfigurator.HTTPKeys c : HttpReconfigurator.HTTPKeys.values()) System.out.println(c);
public static HttpReconfigurator.HTTPKeys 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 null