public enum AuditLogEntryCategory extends java.lang.Enum<AuditLogEntryCategory>
Enum Constant and Description |
---|
AUTH |
DCL |
DDL |
DML |
ERROR |
OTHER |
PREPARE |
QUERY |
Modifier and Type | Method and Description |
---|---|
static AuditLogEntryCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogEntryCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogEntryCategory QUERY
public static final AuditLogEntryCategory DML
public static final AuditLogEntryCategory DDL
public static final AuditLogEntryCategory DCL
public static final AuditLogEntryCategory OTHER
public static final AuditLogEntryCategory AUTH
public static final AuditLogEntryCategory ERROR
public static final AuditLogEntryCategory PREPARE
public static AuditLogEntryCategory[] values()
for (AuditLogEntryCategory c : AuditLogEntryCategory.values()) System.out.println(c);
public static AuditLogEntryCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2021 The Apache Software Foundation