Package org.jeyzer.demo.event.codes
Enum FeatureEventCode
- java.lang.Object
-
- java.lang.Enum<FeatureEventCode>
-
- org.jeyzer.demo.event.codes.FeatureEventCode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FeatureEventCode>,org.jeyzer.mx.event.JzrEventCode
public enum FeatureEventCode extends java.lang.Enum<FeatureEventCode> implements org.jeyzer.mx.event.JzrEventCode
FeatureEventCode defines all the feature applicative event codes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JZR_FEA_01CPU consuming task started.JZR_FEA_02Dead lock task started.JZR_FEA_03Disfunctional code sequence task started.JZR_FEA_04Frozen code task started.JZR_FEA_05Hiatus start task started.JZR_FEA_06Hiatus end task started.JZR_FEA_07Locked threads task started.JZR_FEA_08Memory consuming task started.JZR_FEA_09Memory exhausted task started.JZR_FEA_10Wing light tester task started.JZR_FEA_11Fighter aircraft started.JZR_FEA_12Aircruise started.JZR_FEA_13Airbus plane task started.JZR_FEA_14Antonov plane task started.JZR_FEA_15Boeing plane task started.JZR_FEA_16Mc Donnel-Douglas plane task started.JZR_FEA_17Tupolev plane task started.
-
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 FeatureEventCodevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FeatureEventCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JZR_FEA_01
public static final FeatureEventCode JZR_FEA_01
CPU consuming task started.
-
JZR_FEA_02
public static final FeatureEventCode JZR_FEA_02
Dead lock task started.
-
JZR_FEA_03
public static final FeatureEventCode JZR_FEA_03
Disfunctional code sequence task started.
-
JZR_FEA_04
public static final FeatureEventCode JZR_FEA_04
Frozen code task started.
-
JZR_FEA_05
public static final FeatureEventCode JZR_FEA_05
Hiatus start task started.
-
JZR_FEA_06
public static final FeatureEventCode JZR_FEA_06
Hiatus end task started.
-
JZR_FEA_07
public static final FeatureEventCode JZR_FEA_07
Locked threads task started.
-
JZR_FEA_08
public static final FeatureEventCode JZR_FEA_08
Memory consuming task started.
-
JZR_FEA_09
public static final FeatureEventCode JZR_FEA_09
Memory exhausted task started.
-
JZR_FEA_10
public static final FeatureEventCode JZR_FEA_10
Wing light tester task started.
-
JZR_FEA_11
public static final FeatureEventCode JZR_FEA_11
Fighter aircraft started.
-
JZR_FEA_12
public static final FeatureEventCode JZR_FEA_12
Aircruise started.
-
JZR_FEA_13
public static final FeatureEventCode JZR_FEA_13
Airbus plane task started.
-
JZR_FEA_14
public static final FeatureEventCode JZR_FEA_14
Antonov plane task started.
-
JZR_FEA_15
public static final FeatureEventCode JZR_FEA_15
Boeing plane task started.
-
JZR_FEA_16
public static final FeatureEventCode JZR_FEA_16
Mc Donnel-Douglas plane task started.
-
JZR_FEA_17
public static final FeatureEventCode JZR_FEA_17
Tupolev plane task started.
-
-
Field Detail
-
SERVICE
public static final java.lang.String SERVICE
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static FeatureEventCode[] 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 (FeatureEventCode c : FeatureEventCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureEventCode 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
-
-