Package com.lexmark.saperion
Enum AuditService.AuditEvents
- java.lang.Object
-
- java.lang.Enum<AuditService.AuditEvents>
-
- com.lexmark.saperion.AuditService.AuditEvents
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AuditService.AuditEvents>
- Enclosing interface:
- AuditService
public static enum AuditService.AuditEvents extends java.lang.Enum<AuditService.AuditEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN
The ADMIN.ARCHIVE
The ARCHIVE.CHECKIN
The CHECKIN.CHECKOUT
The CHECKOUT.DELETE
The DELETE.DOCFLOW
The DOCFLOW.DOWNLOAD
The DOWNLOADEDIT
The EDIT.ERROR
The ERROR.INDEX
The INDEX.KORBENTRY
The KORBENTRY.LOCK
The LOCKLTANSREGISTRATION
The LTANSREGISTRATION.MASKINIT
The MASKINIT.MASKLEAVE
The MASKLEAVE.MASKQUERY
The MASKQUERY.MENULOAD
The MENULOAD.PRINT
The PRINT.RETENTION
The RETENTION.REVISE
The REVISE.SHUTDOWN
The SHUTDOWN.SIGN
The SIGN.STARTUP
The STARTUP.SYNCHRONIZE
The SYNCHRONIZE.TIMER
The TIMER.TRANSFER
The TRANSFER.UNLOCK
The UNLOCKUSER
The USER.VIEW
The VIEW.VIEWERCLOSE
The VIEWERCLOSE.VIEWERENDDOC
The VIEWERENDDOC.VIEWEROPEN
The VIEWEROPEN.VIEWERSTARTDOC
The VIEWERSTARTDOC.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuditService.AuditEvents
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AuditService.AuditEvents[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER
public static final AuditService.AuditEvents USER
The USER.
-
TRANSFER
public static final AuditService.AuditEvents TRANSFER
The TRANSFER.
-
ERROR
public static final AuditService.AuditEvents ERROR
The ERROR.
-
ARCHIVE
public static final AuditService.AuditEvents ARCHIVE
The ARCHIVE.
-
REVISE
public static final AuditService.AuditEvents REVISE
The REVISE.
-
DELETE
public static final AuditService.AuditEvents DELETE
The DELETE.
-
ADMIN
public static final AuditService.AuditEvents ADMIN
The ADMIN.
-
EDIT
public static final AuditService.AuditEvents EDIT
The EDIT.
-
PRINT
public static final AuditService.AuditEvents PRINT
The PRINT.
-
KORBENTRY
public static final AuditService.AuditEvents KORBENTRY
The KORBENTRY.
-
TIMER
public static final AuditService.AuditEvents TIMER
The TIMER.
-
MASKINIT
public static final AuditService.AuditEvents MASKINIT
The MASKINIT.
-
MASKLEAVE
public static final AuditService.AuditEvents MASKLEAVE
The MASKLEAVE.
-
MASKQUERY
public static final AuditService.AuditEvents MASKQUERY
The MASKQUERY.
-
STARTUP
public static final AuditService.AuditEvents STARTUP
The STARTUP.
-
SHUTDOWN
public static final AuditService.AuditEvents SHUTDOWN
The SHUTDOWN.
-
DOCFLOW
public static final AuditService.AuditEvents DOCFLOW
The DOCFLOW.
-
MENULOAD
public static final AuditService.AuditEvents MENULOAD
The MENULOAD.
-
INDEX
public static final AuditService.AuditEvents INDEX
The INDEX.
-
VIEW
public static final AuditService.AuditEvents VIEW
The VIEW.
-
SIGN
public static final AuditService.AuditEvents SIGN
The SIGN.
-
SYNCHRONIZE
public static final AuditService.AuditEvents SYNCHRONIZE
The SYNCHRONIZE.
-
VIEWEROPEN
public static final AuditService.AuditEvents VIEWEROPEN
The VIEWEROPEN.
-
VIEWERCLOSE
public static final AuditService.AuditEvents VIEWERCLOSE
The VIEWERCLOSE.
-
VIEWERSTARTDOC
public static final AuditService.AuditEvents VIEWERSTARTDOC
The VIEWERSTARTDOC.
-
VIEWERENDDOC
public static final AuditService.AuditEvents VIEWERENDDOC
The VIEWERENDDOC.
-
LTANSREGISTRATION
public static final AuditService.AuditEvents LTANSREGISTRATION
The LTANSREGISTRATION.
-
RETENTION
public static final AuditService.AuditEvents RETENTION
The RETENTION.
-
CHECKOUT
public static final AuditService.AuditEvents CHECKOUT
The CHECKOUT.
-
CHECKIN
public static final AuditService.AuditEvents CHECKIN
The CHECKIN.
-
LOCK
public static final AuditService.AuditEvents LOCK
The LOCK
-
UNLOCK
public static final AuditService.AuditEvents UNLOCK
The UNLOCK
-
DOWNLOAD
public static final AuditService.AuditEvents DOWNLOAD
The DOWNLOAD
-
-
Method Detail
-
values
public static AuditService.AuditEvents[] 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 (AuditService.AuditEvents c : AuditService.AuditEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditService.AuditEvents 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
-
-