Package org.jboss.as.logging
Enum Attribute
- java.lang.Object
-
- java.lang.Enum<Attribute>
-
- org.jboss.as.logging.Attribute
-
- All Implemented Interfaces:
Serializable,Comparable<Attribute>
public enum Attribute extends Enum<Attribute>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeforName(String localName)AttributeDefinitiongetDefinition()StringgetLocalName()Get the local name of this attribute.static Map<String,Attribute>getMap()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
-
APPEND
public static final Attribute APPEND
-
AUTOFLUSH
public static final Attribute AUTOFLUSH
-
BLOCK_ON_RECONNECT
public static final Attribute BLOCK_ON_RECONNECT
-
CATEGORY
public static final Attribute CATEGORY
-
CLASS
public static final Attribute CLASS
-
COLOR_MAP
public static final Attribute COLOR_MAP
-
ENABLED
public static final Attribute ENABLED
-
MIN_INCLUSIVE
public static final Attribute MIN_INCLUSIVE
-
MIN_LEVEL
public static final Attribute MIN_LEVEL
-
MAX_BACKUP_INDEX
public static final Attribute MAX_BACKUP_INDEX
-
MAX_INCLUSIVE
public static final Attribute MAX_INCLUSIVE
-
MAX_LEVEL
public static final Attribute MAX_LEVEL
-
MODULE
public static final Attribute MODULE
-
NAME
public static final Attribute NAME
-
NEW_LEVEL
public static final Attribute NEW_LEVEL
-
OUTBOUND_SOCKET_BINDING_REF
public static final Attribute OUTBOUND_SOCKET_BINDING_REF
-
OVERFLOW_ACTION
public static final Attribute OVERFLOW_ACTION
-
PATH
public static final Attribute PATH
-
PATTERN
public static final Attribute PATTERN
-
QUEUE_LENGTH
public static final Attribute QUEUE_LENGTH
-
RELATIVE_TO
public static final Attribute RELATIVE_TO
-
REPLACEMENT
public static final Attribute REPLACEMENT
-
REPLACE_ALL
public static final Attribute REPLACE_ALL
-
ROTATE_ON_BOOT
public static final Attribute ROTATE_ON_BOOT
-
ROTATE_SIZE
public static final Attribute ROTATE_SIZE
-
SSL_CONTEXT
public static final Attribute SSL_CONTEXT
-
SUFFIX
public static final Attribute SUFFIX
-
SYSLOG_TYPE
public static final Attribute SYSLOG_TYPE
-
TARGET
public static final Attribute TARGET
-
USE_PARENT_HANDLERS
public static final Attribute USE_PARENT_HANDLERS
-
VALUE
public static final Attribute VALUE
-
-
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 attribute.- Returns:
- the local name
-
getDefinition
public AttributeDefinition getDefinition()
-
-