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