public enum LoadEvent extends Enum<LoadEvent>
| Enum Constant and Description |
|---|
DEFINE
Should the event be raised when class is first loaded by the ClassLoader?
|
REDEFINE
Should the event be raised when class is redefined by hotswap mechanism?
|
| Modifier and Type | Method and Description |
|---|---|
static LoadEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadEvent DEFINE
public static final LoadEvent REDEFINE
public static LoadEvent[] values()
for (LoadEvent c : LoadEvent.values()) System.out.println(c);
public static LoadEvent 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.