public static enum AuditEntry.Mode extends Enum<AuditEntry.Mode>
Enum Constant and Description |
---|
ADMIN
The entry was recorded while the end user was in administrative mode.
|
SYSTEM
The entry was recorded by a system action.
|
USER
The entry was recorded during a typical user session mode.
|
Modifier and Type | Method and Description |
---|---|
static AuditEntry.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditEntry.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditEntry.Mode USER
public static final AuditEntry.Mode SYSTEM
public static final AuditEntry.Mode ADMIN
public static AuditEntry.Mode[] values()
for (AuditEntry.Mode c : AuditEntry.Mode.values()) System.out.println(c);
public static AuditEntry.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null<i>Copyright (c) 2021, SAS Institute Inc., Cary, NC, USA</i>