Package org.apache.abdera.i18n.text
Enum CharUtils.Profile
- java.lang.Object
-
- java.lang.Enum<CharUtils.Profile>
-
- org.apache.abdera.i18n.text.CharUtils.Profile
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CharUtils.Profile>
- Enclosing class:
- CharUtils
public static enum CharUtils.Profile extends java.lang.Enum<CharUtils.Profile>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALPHA
ALPHANUM
ASCIISANSCRLF
AUTHORITY
FRAGMENT
IFRAGMENT
IHOST
IPATH
IPATHNODELIMS
IPATHNODELIMS_SEG
IPRIVATE
IQUERY
IREGNAME
IUNRESERVED
IUSERINFO
NONE
PATH
PATHNODELIMS
PCT
QUERY
RESERVED
SCHEME
SCHEMESPECIFICPART
STD3ASCIIRULES
UNRESERVED
USERINFO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
check(int codepoint)
Filter
filter()
static CharUtils.Profile
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CharUtils.Profile[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CharUtils.Profile NONE
-
ALPHA
public static final CharUtils.Profile ALPHA
-
ALPHANUM
public static final CharUtils.Profile ALPHANUM
-
FRAGMENT
public static final CharUtils.Profile FRAGMENT
-
IFRAGMENT
public static final CharUtils.Profile IFRAGMENT
-
PATH
public static final CharUtils.Profile PATH
-
IPATH
public static final CharUtils.Profile IPATH
-
IUSERINFO
public static final CharUtils.Profile IUSERINFO
-
USERINFO
public static final CharUtils.Profile USERINFO
-
QUERY
public static final CharUtils.Profile QUERY
-
IQUERY
public static final CharUtils.Profile IQUERY
-
SCHEME
public static final CharUtils.Profile SCHEME
-
PATHNODELIMS
public static final CharUtils.Profile PATHNODELIMS
-
IPATHNODELIMS
public static final CharUtils.Profile IPATHNODELIMS
-
IPATHNODELIMS_SEG
public static final CharUtils.Profile IPATHNODELIMS_SEG
-
IREGNAME
public static final CharUtils.Profile IREGNAME
-
IHOST
public static final CharUtils.Profile IHOST
-
IPRIVATE
public static final CharUtils.Profile IPRIVATE
-
RESERVED
public static final CharUtils.Profile RESERVED
-
IUNRESERVED
public static final CharUtils.Profile IUNRESERVED
-
UNRESERVED
public static final CharUtils.Profile UNRESERVED
-
SCHEMESPECIFICPART
public static final CharUtils.Profile SCHEMESPECIFICPART
-
AUTHORITY
public static final CharUtils.Profile AUTHORITY
-
ASCIISANSCRLF
public static final CharUtils.Profile ASCIISANSCRLF
-
PCT
public static final CharUtils.Profile PCT
-
STD3ASCIIRULES
public static final CharUtils.Profile STD3ASCIIRULES
-
-
Method Detail
-
values
public static CharUtils.Profile[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CharUtils.Profile c : CharUtils.Profile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharUtils.Profile valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
filter
public Filter filter()
-
check
public boolean check(int codepoint)
-
-