public enum ProxyEventType extends Enum<ProxyEventType>
| Enum Constant and Description |
|---|
AFTER_METHOD |
AFTER_QUERY |
BEFORE_METHOD |
BEFORE_QUERY |
EACH_QUERY_RESULT |
| Modifier and Type | Method and Description |
|---|---|
static ProxyEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProxyEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyEventType BEFORE_METHOD
public static final ProxyEventType AFTER_METHOD
public static final ProxyEventType BEFORE_QUERY
public static final ProxyEventType AFTER_QUERY
public static final ProxyEventType EACH_QUERY_RESULT
public static ProxyEventType[] values()
for (ProxyEventType c : ProxyEventType.values()) System.out.println(c);
public static ProxyEventType 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 © 2018. All rights reserved.