Package org.deckfour.xes.extension.std
Enum XSoftwareEventExtension.SoftwareEventType
- java.lang.Object
-
- java.lang.Enum<XSoftwareEventExtension.SoftwareEventType>
-
- org.deckfour.xes.extension.std.XSoftwareEventExtension.SoftwareEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<XSoftwareEventExtension.SoftwareEventType>
- Enclosing class:
- XSoftwareEventExtension
public static enum XSoftwareEventExtension.SoftwareEventType extends java.lang.Enum<XSoftwareEventExtension.SoftwareEventType>
Possible software event types
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XSoftwareEventExtension.SoftwareEventTypedecode(java.lang.String encoding)java.lang.StringgetEncoding()static XSoftwareEventExtension.SoftwareEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static XSoftwareEventExtension.SoftwareEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CALL
public static final XSoftwareEventExtension.SoftwareEventType CALL
-
CALLING
public static final XSoftwareEventExtension.SoftwareEventType CALLING
-
HANDLE
public static final XSoftwareEventExtension.SoftwareEventType HANDLE
-
RETURN
public static final XSoftwareEventExtension.SoftwareEventType RETURN
-
RETURNING
public static final XSoftwareEventExtension.SoftwareEventType RETURNING
-
THROWS
public static final XSoftwareEventExtension.SoftwareEventType THROWS
-
UNKNOWN
public static final XSoftwareEventExtension.SoftwareEventType UNKNOWN
-
-
Method Detail
-
values
public static XSoftwareEventExtension.SoftwareEventType[] 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 (XSoftwareEventExtension.SoftwareEventType c : XSoftwareEventExtension.SoftwareEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XSoftwareEventExtension.SoftwareEventType 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
-
getEncoding
public java.lang.String getEncoding()
-
decode
public static XSoftwareEventExtension.SoftwareEventType decode(java.lang.String encoding)
-
-