org.apache.qpid.management.configuration
Enum Tag
java.lang.Object
java.lang.Enum<Tag>
org.apache.qpid.management.configuration.Tag
- All Implemented Interfaces:
- Serializable, Comparable<Tag>
public enum Tag
- extends Enum<Tag>
Configuration Tag catalogue.
Method Summary |
static Tag |
get(String name)
Returns the enum entry associated to the given tag name. |
static Tag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Tag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
CONFIGURATION
public static final Tag CONFIGURATION
BROKER
public static final Tag BROKER
HOST
public static final Tag HOST
PORT
public static final Tag PORT
MAX_POOL_CAPACITY
public static final Tag MAX_POOL_CAPACITY
MAX_WAIT_TIMEOUT
public static final Tag MAX_WAIT_TIMEOUT
INITIAL_POOL_CAPACITY
public static final Tag INITIAL_POOL_CAPACITY
VIRTUAL_HOST
public static final Tag VIRTUAL_HOST
USER
public static final Tag USER
PASSWORD
public static final Tag PASSWORD
BROKERS
public static final Tag BROKERS
WORK_MANAGER
public static final Tag WORK_MANAGER
POOL_CAPACITY
public static final Tag POOL_CAPACITY
KEEP_ALIVE_TIME
public static final Tag KEEP_ALIVE_TIME
values
public static Tag[] 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 (Tag c : Tag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Tag 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
get
public static Tag get(String name)
- Returns the enum entry associated to the given tag name.
- Parameters:
name
- the name of tag.
- Returns:
- the enum entry associated to the given tag name.
Licensed to the Apache Software Foundation