com.sun.jersey.api.uri
Enum UriComponent.Type

java.lang.Object
  extended by java.lang.Enum<UriComponent.Type>
      extended by com.sun.jersey.api.uri.UriComponent.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UriComponent.Type>
Enclosing class:
UriComponent

public static enum UriComponent.Type
extends java.lang.Enum<UriComponent.Type>


Enum Constant Summary
FRAGMENT
           
HOST
           
PATH
           
PATH_SEGMENT
           
PORT
           
QUERY
           
SCHEME
           
USER_INFO
           
 
Method Summary
static UriComponent.Type valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SCHEME

public static final UriComponent.Type SCHEME

USER_INFO

public static final UriComponent.Type USER_INFO

HOST

public static final UriComponent.Type HOST

PORT

public static final UriComponent.Type PORT

PATH

public static final UriComponent.Type PATH

PATH_SEGMENT

public static final UriComponent.Type PATH_SEGMENT

QUERY

public static final UriComponent.Type QUERY

FRAGMENT

public static final UriComponent.Type FRAGMENT
Method Detail

values

public static final UriComponent.Type[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(UriComponent.Type c : UriComponent.Type.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static UriComponent.Type 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 name