public static enum LogElement.Event extends java.lang.Enum<LogElement.Event>
| Enum Constant and Description | 
|---|
ON_LAST_RESPONSE_WRITE  | 
ON_REQUEST_HEADERS  | 
ON_RESPONSE_HEADERS  | 
ON_RESPONSE_WRITE  | 
| Modifier and Type | Field and Description | 
|---|---|
static java.util.Set<LogElement.Event> | 
REQUEST_HEADERS_EVENTS  | 
static java.util.Set<LogElement.Event> | 
RESPONSE_HEADERS_EVENTS  | 
| Modifier and Type | Method and Description | 
|---|---|
static LogElement.Event | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static LogElement.Event[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LogElement.Event ON_REQUEST_HEADERS
public static final LogElement.Event ON_RESPONSE_HEADERS
public static final LogElement.Event ON_RESPONSE_WRITE
public static final LogElement.Event ON_LAST_RESPONSE_WRITE
public static final java.util.Set<LogElement.Event> REQUEST_HEADERS_EVENTS
public static final java.util.Set<LogElement.Event> RESPONSE_HEADERS_EVENTS
public static LogElement.Event[] values()
for (LogElement.Event c : LogElement.Event.values()) System.out.println(c);
public static LogElement.Event 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 null