org.apache.qpid.url
Enum BindingURLParser.BindingURLParserState

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

static enum BindingURLParser.BindingURLParserState
extends Enum<BindingURLParser.BindingURLParserState>


Enum Constant Summary
BINDING_URL_END
           
BINDING_URL_START
           
COLON_CHAR
           
DESTINATION
           
DESTINATION_SEPERATOR_CHAR
           
DOUBLE_SEP
           
END_PROPERTY_VALUE
           
ERROR
           
EXCHANGE_CLASS
           
EXCHANGE_NAME
           
EXCHANGE_SEPERATOR_CHAR
           
PROPERTY_EQUALS
           
PROPERTY_NAME
           
PROPERTY_SEPARATOR
           
PROPERTY_VALUE
           
QUESTION_MARK_CHAR
           
QUEUE_NAME
           
START_PROPERTY_VALUE
           
 
Method Summary
static BindingURLParser.BindingURLParserState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BindingURLParser.BindingURLParserState[] 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

BINDING_URL_START

public static final BindingURLParser.BindingURLParserState BINDING_URL_START

EXCHANGE_CLASS

public static final BindingURLParser.BindingURLParserState EXCHANGE_CLASS

COLON_CHAR

public static final BindingURLParser.BindingURLParserState COLON_CHAR

DOUBLE_SEP

public static final BindingURLParser.BindingURLParserState DOUBLE_SEP

EXCHANGE_NAME

public static final BindingURLParser.BindingURLParserState EXCHANGE_NAME

EXCHANGE_SEPERATOR_CHAR

public static final BindingURLParser.BindingURLParserState EXCHANGE_SEPERATOR_CHAR

DESTINATION

public static final BindingURLParser.BindingURLParserState DESTINATION

DESTINATION_SEPERATOR_CHAR

public static final BindingURLParser.BindingURLParserState DESTINATION_SEPERATOR_CHAR

QUEUE_NAME

public static final BindingURLParser.BindingURLParserState QUEUE_NAME

QUESTION_MARK_CHAR

public static final BindingURLParser.BindingURLParserState QUESTION_MARK_CHAR

PROPERTY_NAME

public static final BindingURLParser.BindingURLParserState PROPERTY_NAME

PROPERTY_EQUALS

public static final BindingURLParser.BindingURLParserState PROPERTY_EQUALS

START_PROPERTY_VALUE

public static final BindingURLParser.BindingURLParserState START_PROPERTY_VALUE

PROPERTY_VALUE

public static final BindingURLParser.BindingURLParserState PROPERTY_VALUE

END_PROPERTY_VALUE

public static final BindingURLParser.BindingURLParserState END_PROPERTY_VALUE

PROPERTY_SEPARATOR

public static final BindingURLParser.BindingURLParserState PROPERTY_SEPARATOR

BINDING_URL_END

public static final BindingURLParser.BindingURLParserState BINDING_URL_END

ERROR

public static final BindingURLParser.BindingURLParserState ERROR
Method Detail

values

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

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

valueOf

public static BindingURLParser.BindingURLParserState 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