public static enum UriComponent.Type extends Enum<UriComponent.Type>
Enum Constant and Description |
---|
AUTHORITY
The URI authority component type.
|
FRAGMENT
The URI fragment component type.
|
HOST
The URI host component type.
|
MATRIX_PARAM
The URI path component type that is a matrix parameter.
|
PATH
The URI path component type.
|
PATH_SEGMENT
The URI path component type that is a path segment.
|
PORT
The URI port component type.
|
QUERY
The URI query component type, encoded using application/x-www-form-urlencoded rules.
|
QUERY_PARAM
The URI query component type that is a query parameter, encoded using
application/x-www-form-urlencoded rules (space character is encoded
as
+ ). |
QUERY_PARAM_SPACE_ENCODED
The URI query component type that is a query parameter, encoded using
application/x-www-form-urlencoded (space character is encoded as
%20 ). |
SCHEME
The URI scheme component type.
|
UNRESERVED
ALPHA / DIGIT / "-" / "." / "_" / "~" characters.
|
USER_INFO
The URI user info component type.
|
Modifier and Type | Method and Description |
---|---|
static UriComponent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriComponent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriComponent.Type UNRESERVED
public static final UriComponent.Type SCHEME
public static final UriComponent.Type AUTHORITY
public static final UriComponent.Type USER_INFO
public static final UriComponent.Type HOST
public static final UriComponent.Type PORT
public static final UriComponent.Type PATH
public static final UriComponent.Type PATH_SEGMENT
public static final UriComponent.Type MATRIX_PARAM
public static final UriComponent.Type QUERY
public static final UriComponent.Type QUERY_PARAM
+
).public static final UriComponent.Type QUERY_PARAM_SPACE_ENCODED
%20
).public static final UriComponent.Type FRAGMENT
public static UriComponent.Type[] values()
for (UriComponent.Type c : UriComponent.Type.values()) System.out.println(c);
public static UriComponent.Type 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 nullCopyright © 2007-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.