public enum ProcessorPhase extends Enum<ProcessorPhase>
| Enum Constant and Description |
|---|
EVENTS_CLOSED_UPGRADE |
OPEN |
| Modifier and Type | Method and Description |
|---|---|
static ProcessorPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessorPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessorPhase OPEN
public static final ProcessorPhase EVENTS_CLOSED_UPGRADE
public static ProcessorPhase[] values()
for (ProcessorPhase c : ProcessorPhase.values()) System.out.println(c);
public static ProcessorPhase 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 © 2020 JBoss by Red Hat. All rights reserved.