Package org.jeyzer.demo.event.codes
Enum DemoEventCode
- java.lang.Object
-
- java.lang.Enum<DemoEventCode>
-
- org.jeyzer.demo.event.codes.DemoEventCode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DemoEventCode>
,org.jeyzer.mx.event.JzrEventCode
public enum DemoEventCode extends java.lang.Enum<DemoEventCode> implements org.jeyzer.mx.event.JzrEventCode
DemoEventCode defines all the high level demo applicative event codes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JZR_DEM_01
Features demo started.JZR_DEM_02
Features demo stopped.JZR_DEM_03
Features demo got interrupted.JZR_DEM_04
Event which should not be published because info service got suspended.JZR_DEM_05
System country locale is not expected one.JZR_DEM_06
Event produced massively to test the event limit.JZR_DEM_07
Duplicate event produced massively to test the event flooding protection.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
SERVICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAbbreviation()
java.lang.String
getDescription()
org.jeyzer.mx.event.JzrEventLevel
getLevel()
java.lang.String
getName()
org.jeyzer.mx.event.JzrEventSubLevel
getSubLevel()
java.lang.String
getTicket()
java.lang.String
getType()
static DemoEventCode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DemoEventCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JZR_DEM_01
public static final DemoEventCode JZR_DEM_01
Features demo started.
-
JZR_DEM_02
public static final DemoEventCode JZR_DEM_02
Features demo stopped.
-
JZR_DEM_03
public static final DemoEventCode JZR_DEM_03
Features demo got interrupted.
-
JZR_DEM_04
public static final DemoEventCode JZR_DEM_04
Event which should not be published because info service got suspended. If you find it, it means that service suspension is broken. Please report the issue.
-
JZR_DEM_05
public static final DemoEventCode JZR_DEM_05
System country locale is not expected one. Process started with the wrong user.country locale. Please report the issue.
-
JZR_DEM_06
public static final DemoEventCode JZR_DEM_06
Event produced massively to test the event limit. This event is cancelled afterwards. It could be normal that it appears in the JZR report in case the Jeyer Recorder collects it before removal.
-
JZR_DEM_07
public static final DemoEventCode JZR_DEM_07
Duplicate event produced massively to test the event flooding protection. All events should be ignored except the first one.
-
-
Field Detail
-
SERVICE
public static final java.lang.String SERVICE
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DemoEventCode[] 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 (DemoEventCode c : DemoEventCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DemoEventCode 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:
getType
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getAbbreviation
public java.lang.String getAbbreviation()
- Specified by:
getAbbreviation
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescription
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getTicket
public java.lang.String getTicket()
- Specified by:
getTicket
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getLevel
public org.jeyzer.mx.event.JzrEventLevel getLevel()
- Specified by:
getLevel
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
getSubLevel
public org.jeyzer.mx.event.JzrEventSubLevel getSubLevel()
- Specified by:
getSubLevel
in interfaceorg.jeyzer.mx.event.JzrEventCode
-
-