org.apache.qpid.management.configuration
Enum Tag

java.lang.Object
  extended by java.lang.Enum<Tag>
      extended by org.apache.qpid.management.configuration.Tag
All Implemented Interfaces:
Serializable, Comparable<Tag>

public enum Tag
extends Enum<Tag>

Configuration Tag catalogue.


Enum Constant Summary
BROKER
           
BROKERS
           
CONFIGURATION
           
HOST
           
INITIAL_POOL_CAPACITY
           
KEEP_ALIVE_TIME
           
MAX_POOL_CAPACITY
           
MAX_WAIT_TIMEOUT
           
PASSWORD
           
POOL_CAPACITY
           
PORT
           
USER
           
VIRTUAL_HOST
           
WORK_MANAGER
           
 
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.
 
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

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
Method Detail

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