public enum AuditLogEventSource extends Enum<AuditLogEventSource>
| Enum Constant and Description |
|---|
DATA_IMPORT |
MANUAL |
SYNCHRONIZATION |
| Modifier and Type | Method and Description |
|---|---|
static AuditLogEventSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogEventSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogEventSource MANUAL
public static final AuditLogEventSource SYNCHRONIZATION
public static final AuditLogEventSource DATA_IMPORT
public static AuditLogEventSource[] values()
for (AuditLogEventSource c : AuditLogEventSource.values()) System.out.println(c);
public static AuditLogEventSource 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 © 2024 Atlassian. All rights reserved.