org.apache.qpid.client.url
Enum URLParser_0_10.URLParserState

java.lang.Object
  extended by java.lang.Enum<URLParser_0_10.URLParserState>
      extended by org.apache.qpid.client.url.URLParser_0_10.URLParserState
All Implemented Interfaces:
Serializable, Comparable<URLParser_0_10.URLParserState>
Enclosing class:
URLParser_0_10

static enum URLParser_0_10.URLParserState
extends Enum<URLParser_0_10.URLParserState>


Enum Constant Summary
ADDRESS_END
           
ADDRESS_SEPERATOR
           
ADDRESS_START
           
AT_CHAR
           
ERROR
           
HOST
           
HOST_PORT_SEPARATOR
           
PORT
           
PROPERTY_EQUALS
           
PROPERTY_NAME
           
PROPERTY_SEPARATOR
           
PROPERTY_VALUE
           
QPID_URL_END
           
QPID_URL_START
           
TRANSPORT
           
TRANSPORT_HOST_SEPARATOR
           
 
Method Summary
static URLParser_0_10.URLParserState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static URLParser_0_10.URLParserState[] 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

QPID_URL_START

public static final URLParser_0_10.URLParserState QPID_URL_START

ADDRESS_START

public static final URLParser_0_10.URLParserState ADDRESS_START

PROPERTY_NAME

public static final URLParser_0_10.URLParserState PROPERTY_NAME

PROPERTY_EQUALS

public static final URLParser_0_10.URLParserState PROPERTY_EQUALS

PROPERTY_VALUE

public static final URLParser_0_10.URLParserState PROPERTY_VALUE

PROPERTY_SEPARATOR

public static final URLParser_0_10.URLParserState PROPERTY_SEPARATOR

AT_CHAR

public static final URLParser_0_10.URLParserState AT_CHAR

TRANSPORT

public static final URLParser_0_10.URLParserState TRANSPORT

TRANSPORT_HOST_SEPARATOR

public static final URLParser_0_10.URLParserState TRANSPORT_HOST_SEPARATOR

HOST

public static final URLParser_0_10.URLParserState HOST

HOST_PORT_SEPARATOR

public static final URLParser_0_10.URLParserState HOST_PORT_SEPARATOR

PORT

public static final URLParser_0_10.URLParserState PORT

ADDRESS_END

public static final URLParser_0_10.URLParserState ADDRESS_END

ADDRESS_SEPERATOR

public static final URLParser_0_10.URLParserState ADDRESS_SEPERATOR

QPID_URL_END

public static final URLParser_0_10.URLParserState QPID_URL_END

ERROR

public static final URLParser_0_10.URLParserState ERROR
Method Detail

values

public static URLParser_0_10.URLParserState[] 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 (URLParser_0_10.URLParserState c : URLParser_0_10.URLParserState.values())
    System.out.println(c);

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

valueOf

public static URLParser_0_10.URLParserState 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


Licensed to the Apache Software Foundation