public enum AuditEventType extends Enum<AuditEventType>
| Enum Constant and Description |
|---|
ACCESS_DENIED |
CREATE_EDGE |
CREATE_VERTEX |
DELETE_EDGE |
DELETE_VERTEX |
EDIT_DOCUMENT |
EXPORT |
LOGIN |
LOGOUT |
SEARCH |
SET_PROPERTY |
UPLOAD_FILE |
| Modifier and Type | Method and Description |
|---|---|
static AuditEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditEventType LOGIN
public static final AuditEventType LOGOUT
public static final AuditEventType ACCESS_DENIED
public static final AuditEventType CREATE_VERTEX
public static final AuditEventType CREATE_EDGE
public static final AuditEventType SET_PROPERTY
public static final AuditEventType DELETE_VERTEX
public static final AuditEventType DELETE_EDGE
public static final AuditEventType EDIT_DOCUMENT
public static final AuditEventType UPLOAD_FILE
public static final AuditEventType EXPORT
public static final AuditEventType SEARCH
public static AuditEventType[] values()
for (AuditEventType c : AuditEventType.values()) System.out.println(c);
public static AuditEventType 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–2021 MWARE SOLUTIONS. All rights reserved.