org.apache.qpid.url
Enum BindingURLParser.BindingURLParserState
java.lang.Object
java.lang.Enum<BindingURLParser.BindingURLParserState>
org.apache.qpid.url.BindingURLParser.BindingURLParserState
- All Implemented Interfaces:
- Serializable, Comparable<BindingURLParser.BindingURLParserState>
- Enclosing class:
- BindingURLParser
static enum BindingURLParser.BindingURLParserState
- extends Enum<BindingURLParser.BindingURLParserState>
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
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