public enum HandlerAttribute extends java.lang.Enum<HandlerAttribute>
| Enum Constant and Description |
|---|
ENABLED |
FILENAME |
LEVEL |
MAX_BACKUP_INDEX |
MAXSIZE |
NAME |
PATTERN |
| Modifier and Type | Method and Description |
|---|---|
static HandlerAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HandlerAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerAttribute ENABLED
public static final HandlerAttribute NAME
public static final HandlerAttribute LEVEL
public static final HandlerAttribute PATTERN
public static final HandlerAttribute FILENAME
public static final HandlerAttribute MAXSIZE
public static final HandlerAttribute MAX_BACKUP_INDEX
public static HandlerAttribute[] values()
for (HandlerAttribute c : HandlerAttribute.values()) System.out.println(c);
public static HandlerAttribute valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2022. All rights reserved.