Package com.saperion.intf.wf
Enum HistoryInfo.HistoryKind
- java.lang.Object
-
- java.lang.Enum<HistoryInfo.HistoryKind>
-
- com.saperion.intf.wf.HistoryInfo.HistoryKind
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HistoryInfo.HistoryKind>
- Enclosing interface:
- HistoryInfo
public static enum HistoryInfo.HistoryKind extends java.lang.Enum<HistoryInfo.HistoryKind>
History kind.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HistGroupAction
HistGroupEnter
HistGroupError
HistGroupExit
HistNodeAction
HistNodeEnter
HistNodeError
HistNodeExit
HistUserDefined
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HistoryInfo.HistoryKind
fromInt(int val)
java.lang.String
toString()
Override toString.static HistoryInfo.HistoryKind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HistoryInfo.HistoryKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HistNodeEnter
public static final HistoryInfo.HistoryKind HistNodeEnter
-
HistNodeExit
public static final HistoryInfo.HistoryKind HistNodeExit
-
HistNodeError
public static final HistoryInfo.HistoryKind HistNodeError
-
HistNodeAction
public static final HistoryInfo.HistoryKind HistNodeAction
-
HistUserDefined
public static final HistoryInfo.HistoryKind HistUserDefined
-
HistGroupEnter
public static final HistoryInfo.HistoryKind HistGroupEnter
-
HistGroupExit
public static final HistoryInfo.HistoryKind HistGroupExit
-
HistGroupAction
public static final HistoryInfo.HistoryKind HistGroupAction
-
HistGroupError
public static final HistoryInfo.HistoryKind HistGroupError
-
-
Method Detail
-
values
public static HistoryInfo.HistoryKind[] 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 (HistoryInfo.HistoryKind c : HistoryInfo.HistoryKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HistoryInfo.HistoryKind 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
-
toString
public java.lang.String toString()
Override toString.- Overrides:
toString
in classjava.lang.Enum<HistoryInfo.HistoryKind>
- Returns:
- Kind name
- See Also:
Enum.toString()
-
fromInt
public static HistoryInfo.HistoryKind fromInt(int val)
- Parameters:
val
- history kind as int- Returns:
- history kind as HistoryKind
-
-