public static enum LogElement.Event extends 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 Set<LogElement.Event> | 
REQUEST_HEADERS_EVENTS  | 
static Set<LogElement.Event> | 
RESPONSE_HEADERS_EVENTS  | 
| Modifier and Type | Method and Description | 
|---|---|
static LogElement.Event | 
valueOf(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 Set<LogElement.Event> REQUEST_HEADERS_EVENTS
public static final 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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null