Package de.xima.fc.mdl.enums
Enum EAppenderKey
- java.lang.Object
-
- java.lang.Enum<EAppenderKey>
-
- de.xima.fc.mdl.enums.EAppenderKey
-
- All Implemented Interfaces:
Serializable
,Comparable<EAppenderKey>
@Deprecated public enum EAppenderKey extends Enum<EAppenderKey>
Deprecated.Enum with property-keys (suffix) for appenders
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENCODING
Deprecated.FILE
Deprecated.LAYOUT
Deprecated.LAYOUTPATTERN
Deprecated.MAXBACKUPINDEX
Deprecated.MAXFILESIZE
Deprecated.THRESHOLD
Deprecated.TYPE
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getDefaultValue()
Deprecated.String
getKey(String appenderName)
Deprecated.static EAppenderKey
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static EAppenderKey[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final EAppenderKey TYPE
Deprecated.
-
FILE
public static final EAppenderKey FILE
Deprecated.
-
MAXFILESIZE
public static final EAppenderKey MAXFILESIZE
Deprecated.
-
MAXBACKUPINDEX
public static final EAppenderKey MAXBACKUPINDEX
Deprecated.
-
LAYOUT
public static final EAppenderKey LAYOUT
Deprecated.
-
ENCODING
public static final EAppenderKey ENCODING
Deprecated.
-
LAYOUTPATTERN
public static final EAppenderKey LAYOUTPATTERN
Deprecated.
-
THRESHOLD
public static final EAppenderKey THRESHOLD
Deprecated.
-
-
Method Detail
-
values
public static EAppenderKey[] values()
Deprecated.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 (EAppenderKey c : EAppenderKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EAppenderKey valueOf(String name)
Deprecated.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
-
-