Package ch.qos.logback.access.sift
Enum AccessEventDiscriminator.FieldName
java.lang.Object
java.lang.Enum<AccessEventDiscriminator.FieldName>
ch.qos.logback.access.sift.AccessEventDiscriminator.FieldName
- All Implemented Interfaces:
Serializable
,Comparable<AccessEventDiscriminator.FieldName>
,java.lang.constant.Constable
- Enclosing class:
- AccessEventDiscriminator
public static enum AccessEventDiscriminator.FieldName
extends Enum<AccessEventDiscriminator.FieldName>
At present time the followed fields can be designated: COOKIE,
REQUEST_ATTRIBUTE, SESSION_ATTRIBUTE, REMOTE_ADDRESS,
LOCAL_PORT,REQUEST_URI
The first three fields require an additional key. For the SESSION_ATTRIBUTE field, the additional key named "id" has special meaning as it is mapped to the session id of the current http request.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static AccessEventDiscriminator.FieldName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
COOKIE
-
REQUEST_ATTRIBUTE
-
SESSION_ATTRIBUTE
-
REMOTE_ADDRESS
-
LOCAL_PORT
-
REQUEST_URI
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-