@Beta public enum AuditType extends Enum<AuditType>
AuditMessages.| Enum Constant and Description |
|---|
ACCESS |
CREATE |
DELETE |
METADATA_CHANGE |
TRUNCATE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static AuditType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditType CREATE
public static final AuditType UPDATE
public static final AuditType DELETE
public static final AuditType TRUNCATE
public static final AuditType ACCESS
public static final AuditType METADATA_CHANGE
public static AuditType[] values()
for (AuditType c : AuditType.values()) System.out.println(c);
public static AuditType 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 nullCopyright © 2016 Cask Data, Inc. Licensed under the Apache License, Version 2.0.