public static enum EventResult.EventResultStatus extends Enum<EventResult.EventResultStatus>
Enum Constant and Description |
---|
CONTINUE
Continue normal processing.
|
SKIP_OBJECT
Skip the rest of processing of this object, continue with the next object.
|
STOP
Stop processing.
|
Modifier and Type | Method and Description |
---|---|
static EventResult.EventResultStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventResult.EventResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventResult.EventResultStatus CONTINUE
public static final EventResult.EventResultStatus SKIP_OBJECT
public static final EventResult.EventResultStatus STOP
public static EventResult.EventResultStatus[] values()
for (EventResult.EventResultStatus c : EventResult.EventResultStatus.values()) System.out.println(c);
public static EventResult.EventResultStatus 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 © 2016 Evolveum. All rights reserved.