org.apache.abdera.i18n.text
Enum CharUtils.Profile

java.lang.Object
  extended by java.lang.Enum<CharUtils.Profile>
      extended by org.apache.abdera.i18n.text.CharUtils.Profile
All Implemented Interfaces:
Serializable, Comparable<CharUtils.Profile>
Enclosing class:
CharUtils

public static enum CharUtils.Profile
extends Enum<CharUtils.Profile>


Enum Constant Summary
ALPHA
           
ALPHANUM
           
ASCIISANSCRLF
           
AUTHORITY
           
FRAGMENT
           
IFRAGMENT
           
IPATH
           
IPATHNODELIMS
           
IPATHNODELIMS_SEG
           
IPRIVATE
           
IQUERY
           
IREGNAME
           
IUNRESERVED
           
IUSERINFO
           
NONE
           
PATH
           
PATHNODELIMS
           
PCT
           
QUERY
           
RESERVED
           
SCHEME
           
SCHEMESPECIFICPART
           
STD3ASCIIRULES
           
UNRESERVED
           
USERINFO
           
 
Method Summary
 boolean check(int codepoint)
           
 Filter filter()
           
static CharUtils.Profile valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

filter

public Filter filter()

check

public boolean check(int codepoint)


Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.