public enum EventTypeEnum extends Enum<EventTypeEnum>
| Enum Constant and Description |
|---|
CLIENT_CREATE |
CLIENT_DESTROY |
FAULT_IN |
FAULT_OUT |
JOB_START |
JOB_STOP |
LOG |
REQ_IN |
REQ_OUT |
RESP_IN |
RESP_OUT |
SERVER_START |
SERVER_STOP |
SERVICE_START |
SERVICE_STOP |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static EventTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypeEnum REQ_IN
public static final EventTypeEnum REQ_OUT
public static final EventTypeEnum RESP_IN
public static final EventTypeEnum RESP_OUT
public static final EventTypeEnum FAULT_IN
public static final EventTypeEnum FAULT_OUT
public static final EventTypeEnum SERVER_START
public static final EventTypeEnum SERVER_STOP
public static final EventTypeEnum SERVICE_START
public static final EventTypeEnum SERVICE_STOP
public static final EventTypeEnum CLIENT_CREATE
public static final EventTypeEnum CLIENT_DESTROY
public static final EventTypeEnum JOB_START
public static final EventTypeEnum JOB_STOP
public static final EventTypeEnum LOG
public static final EventTypeEnum UNKNOWN
public static EventTypeEnum[] values()
for (EventTypeEnum c : EventTypeEnum.values()) System.out.println(c);
public static EventTypeEnum 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 nullCopyright © 2011–2015 Talend Inc.. All rights reserved.