public static enum PathManager.Event extends Enum<PathManager.Event>
Enum Constant and Description |
---|
ADDED
A path entry was added
|
REMOVED
A path entry was removed
|
UPDATED
A path entry was updated
|
Modifier and Type | Method and Description |
---|---|
static PathManager.Event |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathManager.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathManager.Event ADDED
public static final PathManager.Event REMOVED
public static final PathManager.Event UPDATED
public static PathManager.Event[] values()
for (PathManager.Event c : PathManager.Event.values()) System.out.println(c);
public static PathManager.Event 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 © 2023 JBoss by Red Hat. All rights reserved.