Package org.jboss.as.messaging
Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.jboss.as.messaging.Attribute
-
- All Implemented Interfaces:
Serializable,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOW_DIRECT_CONNECTIONS_ONLYBACKUP_CONNECTOR_NAMEDeprecated.CONNECTOR_NAMECONNECTOR_REFHTTP_LISTENERKEYMATCHMODULENAMEPATHRELATIVE_TOROLES_ATTR_NAMESERVER_IDSOCKET_BINDINGSTRINGTYPE_ATTR_NAMEUNKNOWNVALUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeforName(String localName)org.jboss.as.controller.AttributeDefinitiongetDefinition()StringgetLocalName()Get the local name of this element.static AttributevalueOf(String name)Returns the enum constant of this type with the specified name.static Attribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Attribute UNKNOWN
-
ALLOW_DIRECT_CONNECTIONS_ONLY
public static final Attribute ALLOW_DIRECT_CONNECTIONS_ONLY
-
BACKUP_CONNECTOR_NAME
@Deprecated public static final Attribute BACKUP_CONNECTOR_NAME
Deprecated.
-
CONNECTOR_NAME
public static final Attribute CONNECTOR_NAME
-
CONNECTOR_REF
public static final Attribute CONNECTOR_REF
-
HTTP_LISTENER
public static final Attribute HTTP_LISTENER
-
KEY
public static final Attribute KEY
-
MATCH
public static final Attribute MATCH
-
NAME
public static final Attribute NAME
-
PATH
public static final Attribute PATH
-
RELATIVE_TO
public static final Attribute RELATIVE_TO
-
ROLES_ATTR_NAME
public static final Attribute ROLES_ATTR_NAME
-
SERVER_ID
public static final Attribute SERVER_ID
-
SOCKET_BINDING
public static final Attribute SOCKET_BINDING
-
STRING
public static final Attribute STRING
-
TYPE_ATTR_NAME
public static final Attribute TYPE_ATTR_NAME
-
VALUE
public static final Attribute VALUE
-
MODULE
public static final Attribute MODULE
-
-
Method Detail
-
values
public static Attribute[] 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 (Attribute c : Attribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Attribute 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 nameNullPointerException- if the argument is null
-
getLocalName
public String getLocalName()
Get the local name of this element.- Returns:
- the local name
-
getDefinition
public org.jboss.as.controller.AttributeDefinition getDefinition()
-
-