Package com.saperion.constants
Enum SaConstants.ProtoEvents
- java.lang.Object
-
- java.lang.Enum<SaConstants.ProtoEvents>
-
- com.saperion.constants.SaConstants.ProtoEvents
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SaConstants.ProtoEvents>
- Enclosing class:
- SaConstants
public static enum SaConstants.ProtoEvents extends java.lang.Enum<SaConstants.ProtoEvents>
Enumeration for audit event types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENTADMIN
The EVENTADMIN.EVENTARCHIVE
The EVENTARCHIVE.EVENTCHECKIN
The EVENTCHECKIN.EVENTCHECKOUT
The EVENTCHECKOUT.EVENTDELETE
The EVENTDELETE.EVENTDOCFLOW
The EVENTDOCFLOW.EVENTEDIT
The EVENTEDIT.EVENTERROR
The EVENTERROR.EVENTINDEX
The EVENTINDEX.EVENTKORBENTRY
The EVENTKORBENTRY.EVENTLTANSREGISTRATION
The EVENTLTANSREGISTRATION.EVENTMASKINIT
The EVENTMASKINIT.EVENTMASKLEAVE
The EVENTMASKLEAVE.EVENTMASKQUERY
The EVENTMASKQUERY.EVENTMENULOAD
The EVENTMENULOAD.EVENTPRINT
The EVENTPRINT.EVENTRETENTION
The EVENTRETENTION.EVENTREVISE
The EVENTREVISE.EVENTSHUTDOWN
The EVENTSHUTDOWN.EVENTSIGN
The EVENTSIGN.EVENTSTARTUP
The EVENTSTARTUP.EVENTSYNCHRONIZE
The EVENTSYNCHRONIZE.EVENTTIMER
The EVENTTIMER.EVENTTRANSFER
The EVENTTRANSFER.EVENTUSER
The EVENTUSER.EVENTVIEW
The EVENTVIEW.EVENTVIEWERCLOSE
The EVENTVIEWERCLOSE.EVENTVIEWERENDDOC
The EVENTVIEWERENDDOC.EVENTVIEWEROPEN
The EVENTVIEWEROPEN.EVENTVIEWERSTARTDOC
The EVENTVIEWERSTARTDOC.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SaConstants.ProtoEvents
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SaConstants.ProtoEvents[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENTUSER
public static final SaConstants.ProtoEvents EVENTUSER
The EVENTUSER.
-
EVENTTRANSFER
public static final SaConstants.ProtoEvents EVENTTRANSFER
The EVENTTRANSFER.
-
EVENTERROR
public static final SaConstants.ProtoEvents EVENTERROR
The EVENTERROR.
-
EVENTARCHIVE
public static final SaConstants.ProtoEvents EVENTARCHIVE
The EVENTARCHIVE.
-
EVENTREVISE
public static final SaConstants.ProtoEvents EVENTREVISE
The EVENTREVISE.
-
EVENTDELETE
public static final SaConstants.ProtoEvents EVENTDELETE
The EVENTDELETE.
-
EVENTADMIN
public static final SaConstants.ProtoEvents EVENTADMIN
The EVENTADMIN.
-
EVENTEDIT
public static final SaConstants.ProtoEvents EVENTEDIT
The EVENTEDIT.
-
EVENTPRINT
public static final SaConstants.ProtoEvents EVENTPRINT
The EVENTPRINT.
-
EVENTKORBENTRY
public static final SaConstants.ProtoEvents EVENTKORBENTRY
The EVENTKORBENTRY.
-
EVENTTIMER
public static final SaConstants.ProtoEvents EVENTTIMER
The EVENTTIMER.
-
EVENTMASKINIT
public static final SaConstants.ProtoEvents EVENTMASKINIT
The EVENTMASKINIT.
-
EVENTMASKLEAVE
public static final SaConstants.ProtoEvents EVENTMASKLEAVE
The EVENTMASKLEAVE.
-
EVENTMASKQUERY
public static final SaConstants.ProtoEvents EVENTMASKQUERY
The EVENTMASKQUERY.
-
EVENTSTARTUP
public static final SaConstants.ProtoEvents EVENTSTARTUP
The EVENTSTARTUP.
-
EVENTSHUTDOWN
public static final SaConstants.ProtoEvents EVENTSHUTDOWN
The EVENTSHUTDOWN.
-
EVENTDOCFLOW
public static final SaConstants.ProtoEvents EVENTDOCFLOW
The EVENTDOCFLOW.
-
EVENTMENULOAD
public static final SaConstants.ProtoEvents EVENTMENULOAD
The EVENTMENULOAD.
-
EVENTINDEX
public static final SaConstants.ProtoEvents EVENTINDEX
The EVENTINDEX.
-
EVENTVIEW
public static final SaConstants.ProtoEvents EVENTVIEW
The EVENTVIEW.
-
EVENTSIGN
public static final SaConstants.ProtoEvents EVENTSIGN
The EVENTSIGN.
-
EVENTSYNCHRONIZE
public static final SaConstants.ProtoEvents EVENTSYNCHRONIZE
The EVENTSYNCHRONIZE.
-
EVENTVIEWEROPEN
public static final SaConstants.ProtoEvents EVENTVIEWEROPEN
The EVENTVIEWEROPEN.
-
EVENTVIEWERCLOSE
public static final SaConstants.ProtoEvents EVENTVIEWERCLOSE
The EVENTVIEWERCLOSE.
-
EVENTVIEWERSTARTDOC
public static final SaConstants.ProtoEvents EVENTVIEWERSTARTDOC
The EVENTVIEWERSTARTDOC.
-
EVENTVIEWERENDDOC
public static final SaConstants.ProtoEvents EVENTVIEWERENDDOC
The EVENTVIEWERENDDOC.
-
EVENTLTANSREGISTRATION
public static final SaConstants.ProtoEvents EVENTLTANSREGISTRATION
The EVENTLTANSREGISTRATION.
-
EVENTRETENTION
public static final SaConstants.ProtoEvents EVENTRETENTION
The EVENTRETENTION.
-
EVENTCHECKOUT
public static final SaConstants.ProtoEvents EVENTCHECKOUT
The EVENTCHECKOUT.
-
EVENTCHECKIN
public static final SaConstants.ProtoEvents EVENTCHECKIN
The EVENTCHECKIN.
-
-
Method Detail
-
values
public static SaConstants.ProtoEvents[] 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 (SaConstants.ProtoEvents c : SaConstants.ProtoEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaConstants.ProtoEvents 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
-
-