public enum ProcessState extends Enum<ProcessState>
Enum Constant and Description |
---|
AVAILABLE |
DONE |
ERROR |
HOLD |
INPROCESS |
Modifier and Type | Method and Description |
---|---|
static Set<ProcessState> |
getMandatoryKnownStates() |
static ProcessState |
getProcessStateFromName(String name) |
static Map<ProcessState,Set<ProcessState>> |
getTargetProcessStates(Set<ProcessState> knownProcessStates) |
static ProcessState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessState AVAILABLE
public static final ProcessState INPROCESS
public static final ProcessState DONE
public static final ProcessState ERROR
public static final ProcessState HOLD
public static ProcessState[] values()
for (ProcessState c : ProcessState.values()) System.out.println(c);
public static ProcessState 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 nullpublic static Set<ProcessState> getMandatoryKnownStates()
public static Map<ProcessState,Set<ProcessState>> getTargetProcessStates(Set<ProcessState> knownProcessStates)
public static ProcessState getProcessStateFromName(String name)
Copyright © 2023 Frank!Framework. All rights reserved.