Package org.jeyzer.demo.event.codes
Enum LaborEventCode
- java.lang.Object
-
- java.lang.Enum<LaborEventCode>
-
- org.jeyzer.demo.event.codes.LaborEventCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LaborEventCode>,org.jeyzer.mx.event.JzrEventCode
public enum LaborEventCode extends java.lang.Enum<LaborEventCode> implements org.jeyzer.mx.event.JzrEventCode
LaborEventCode defines all the high level labor applicative event codes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JZR_LAB_01Labor system event code published.JZR_LAB_02Labor executable event code published.JZR_LAB_03Labor applicative task one shot event code published.JZR_LAB_04Labor applicative task long event code published.JZR_LAB_05Labor applicative session one shot event code published.JZR_LAB_06Labor applicative session long event code published.JZR_LAB_07Labor applicative session long event code published.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSERVICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAbbreviation()java.lang.StringgetDescription()org.jeyzer.mx.event.JzrEventLevelgetLevel()java.lang.StringgetName()org.jeyzer.mx.event.JzrEventSubLevelgetSubLevel()java.lang.StringgetTicket()java.lang.StringgetType()static LaborEventCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LaborEventCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JZR_LAB_01
public static final LaborEventCode JZR_LAB_01
Labor system event code published.
-
JZR_LAB_02
public static final LaborEventCode JZR_LAB_02
Labor executable event code published.
-
JZR_LAB_03
public static final LaborEventCode JZR_LAB_03
Labor applicative task one shot event code published.
-
JZR_LAB_04
public static final LaborEventCode JZR_LAB_04
Labor applicative task long event code published.
-
JZR_LAB_05
public static final LaborEventCode JZR_LAB_05
Labor applicative session one shot event code published.
-
JZR_LAB_06
public static final LaborEventCode JZR_LAB_06
Labor applicative session long event code published.
-
JZR_LAB_07
public static final LaborEventCode JZR_LAB_07
Labor applicative session long event code published.
-
-
Field Detail
-
SERVICE
public static final java.lang.String SERVICE
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static LaborEventCode[] 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 (LaborEventCode c : LaborEventCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LaborEventCode 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
-
getType
public java.lang.String getType()
- Specified by:
getTypein interfaceorg.jeyzer.mx.event.JzrEventCode
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceorg.jeyzer.mx.event.JzrEventCode
-
getAbbreviation
public java.lang.String getAbbreviation()
- Specified by:
getAbbreviationin interfaceorg.jeyzer.mx.event.JzrEventCode
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescriptionin interfaceorg.jeyzer.mx.event.JzrEventCode
-
getTicket
public java.lang.String getTicket()
- Specified by:
getTicketin interfaceorg.jeyzer.mx.event.JzrEventCode
-
getLevel
public org.jeyzer.mx.event.JzrEventLevel getLevel()
- Specified by:
getLevelin interfaceorg.jeyzer.mx.event.JzrEventCode
-
getSubLevel
public org.jeyzer.mx.event.JzrEventSubLevel getSubLevel()
- Specified by:
getSubLevelin interfaceorg.jeyzer.mx.event.JzrEventCode
-
-