public enum EventScanType extends Enum<EventScanType>
| Enum Constant and Description |
|---|
EXTENDED
Extended scanning; private members are additionally included.
|
FAST
The default scanning type; only public members are scanned, but all
public methods in superclasses are included.
|
FULL
Extended scanning, but also scans superclasses and registers their
private annotated methods.
|
| Modifier and Type | Method and Description |
|---|---|
static EventScanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventScanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventScanType FAST
public static final EventScanType EXTENDED
public static final EventScanType FULL
public static EventScanType[] values()
for (EventScanType c : EventScanType.values()) System.out.println(c);
public static EventScanType 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 © 2014. All rights reserved.