public static enum UriUtils.Type extends Enum<UriUtils.Type>
| Enum Constant and Description |
|---|
AUTHORITY |
FRAGMENT |
HOST_IPV4 |
HOST_IPV6 |
PATH |
PATH_SEGMENT |
PORT |
QUERY |
QUERY_PARAM |
SCHEME |
URI |
USER_INFO |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
isAllowed(int c) |
protected boolean |
isAlpha(int c) |
protected boolean |
isDigit(int c) |
protected boolean |
isGenericDelimiter(int c) |
protected boolean |
isPchar(int c) |
protected boolean |
isReserved(int c) |
protected boolean |
isSubDelimiter(int c) |
protected boolean |
isUnreserved(int c) |
static UriUtils.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriUtils.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriUtils.Type SCHEME
public static final UriUtils.Type AUTHORITY
public static final UriUtils.Type USER_INFO
public static final UriUtils.Type HOST_IPV4
public static final UriUtils.Type HOST_IPV6
public static final UriUtils.Type PORT
public static final UriUtils.Type PATH
public static final UriUtils.Type PATH_SEGMENT
public static final UriUtils.Type QUERY
public static final UriUtils.Type QUERY_PARAM
public static final UriUtils.Type FRAGMENT
public static final UriUtils.Type URI
public static UriUtils.Type[] values()
for (UriUtils.Type c : UriUtils.Type.values()) System.out.println(c);
public static UriUtils.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 nullpublic abstract boolean isAllowed(int c)
protected boolean isAlpha(int c)
protected boolean isDigit(int c)
protected boolean isGenericDelimiter(int c)
protected boolean isSubDelimiter(int c)
protected boolean isReserved(int c)
protected boolean isUnreserved(int c)
protected boolean isPchar(int c)
Copyright © 2019. All rights reserved.