public enum AccessAttribute extends java.lang.Enum<AccessAttribute>
Enum Constant | Description |
---|---|
CONTENT_LENGTH |
|
LOCAL_PORT |
|
METHOD |
|
PROTOCOL |
|
REMOTE_ADDRESS |
|
REMOTE_HOST |
|
REMOTE_USER |
|
REQUEST_CONTENT |
|
REQUEST_PARAMETERS |
|
REQUEST_TIME |
|
REQUEST_URI |
|
REQUEST_URL |
|
RESPONSE_CONTENT |
|
SERVER_NAME |
|
STATUS_CODE |
|
TIMESTAMP |
|
USER_AGENT |
Modifier and Type | Method | Description |
---|---|---|
static AccessAttribute |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AccessAttribute[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessAttribute CONTENT_LENGTH
public static final AccessAttribute METHOD
public static final AccessAttribute REMOTE_ADDRESS
public static final AccessAttribute REMOTE_USER
public static final AccessAttribute REQUEST_TIME
public static final AccessAttribute REQUEST_URI
public static final AccessAttribute REQUEST_URL
public static final AccessAttribute STATUS_CODE
public static final AccessAttribute PROTOCOL
public static final AccessAttribute REMOTE_HOST
public static final AccessAttribute SERVER_NAME
public static final AccessAttribute REQUEST_PARAMETERS
public static final AccessAttribute USER_AGENT
public static final AccessAttribute LOCAL_PORT
public static final AccessAttribute REQUEST_CONTENT
public static final AccessAttribute RESPONSE_CONTENT
public static final AccessAttribute TIMESTAMP
public static AccessAttribute[] values()
for (AccessAttribute c : AccessAttribute.values()) System.out.println(c);
public static AccessAttribute 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 © 2018. All rights reserved.