Package com.saperion.ws.wrapper.wf
Enum SaWsHistoryEnum
- java.lang.Object
-
- java.lang.Enum<SaWsHistoryEnum>
-
- com.saperion.ws.wrapper.wf.SaWsHistoryEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SaWsHistoryEnum>
public enum SaWsHistoryEnum extends java.lang.Enum<SaWsHistoryEnum>
The Enum SaWsHistoryEnum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GroupAction
The Group action.GroupEnter
The Group enter.GroupError
The Group error.GroupExit
The Group exit.NodeAction
The Node action.NodeEnter
The Node enter.NodeError
The Node error.NodeExit
The Node exit.UserDefined
The User defined.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SaWsHistoryEnum
fromBackend(com.saperion.intf.wf.HistoryInfo.HistoryKind kind)
From backend.static com.saperion.intf.wf.HistoryInfo.HistoryKind
fromWebService(SaWsHistoryEnum kind)
From web service.static SaWsHistoryEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SaWsHistoryEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NodeEnter
public static final SaWsHistoryEnum NodeEnter
The Node enter.
-
NodeExit
public static final SaWsHistoryEnum NodeExit
The Node exit.
-
NodeError
public static final SaWsHistoryEnum NodeError
The Node error.
-
NodeAction
public static final SaWsHistoryEnum NodeAction
The Node action.
-
UserDefined
public static final SaWsHistoryEnum UserDefined
The User defined.
-
GroupEnter
public static final SaWsHistoryEnum GroupEnter
The Group enter.
-
GroupExit
public static final SaWsHistoryEnum GroupExit
The Group exit.
-
GroupAction
public static final SaWsHistoryEnum GroupAction
The Group action.
-
GroupError
public static final SaWsHistoryEnum GroupError
The Group error.
-
-
Method Detail
-
values
public static SaWsHistoryEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SaWsHistoryEnum c : SaWsHistoryEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaWsHistoryEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromBackend
public static SaWsHistoryEnum fromBackend(com.saperion.intf.wf.HistoryInfo.HistoryKind kind)
From backend.- Parameters:
kind
- the kind- Returns:
- the sa ws history enum
-
fromWebService
public static com.saperion.intf.wf.HistoryInfo.HistoryKind fromWebService(SaWsHistoryEnum kind)
From web service.- Parameters:
kind
- the kind- Returns:
- the history kind
-
-