private static enum HttpURI.State extends java.lang.Enum<HttpURI.State>
Enum Constant and Description |
---|
ASTERISK |
FRAGMENT |
HOST |
HOST_OR_PATH |
IPV6 |
PARAM |
PATH |
PORT |
QUERY |
SCHEME_OR_PATH |
START |
Modifier and Type | Method and Description |
---|---|
static HttpURI.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpURI.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpURI.State START
public static final HttpURI.State HOST_OR_PATH
public static final HttpURI.State SCHEME_OR_PATH
public static final HttpURI.State HOST
public static final HttpURI.State IPV6
public static final HttpURI.State PORT
public static final HttpURI.State PATH
public static final HttpURI.State PARAM
public static final HttpURI.State QUERY
public static final HttpURI.State FRAGMENT
public static final HttpURI.State ASTERISK
public static HttpURI.State[] values()
for (HttpURI.State c : HttpURI.State.values()) System.out.println(c);
public static HttpURI.State 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