public enum AuditLogSortAttribute extends Enum<AuditLogSortAttribute>
Enum Constant and Description |
---|
ACTIVITY
The activity associated with the audit log entry.
|
DESCRIPTION
The description associated with the audit log entry.
|
ORIGIN
The origin associated with the audit log entry.
|
SYSTEM
The system that created the alert.
|
TIMESTAMP
The time stamp associated with the audit log entry.
|
USER
The user associated with the audit log entry.
|
Modifier and Type | Method and Description |
---|---|
static AuditLogSortAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogSortAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogSortAttribute USER
public static final AuditLogSortAttribute ORIGIN
public static final AuditLogSortAttribute TIMESTAMP
public static final AuditLogSortAttribute ACTIVITY
public static final AuditLogSortAttribute DESCRIPTION
public static final AuditLogSortAttribute SYSTEM
public static AuditLogSortAttribute[] values()
for (AuditLogSortAttribute c : AuditLogSortAttribute.values()) System.out.println(c);
public static AuditLogSortAttribute 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 © 2015. All Rights Reserved.