@ExperimentalApi public enum AuditLogChangesetProjection extends Enum<AuditLogChangesetProjection>
AuditLogQuery
.
When a projection is specified only some fields of the query results will be populated.Enum Constant and Description |
---|
AUTHOR
Only populates the author of the changesets
|
ENTITY_APPLICATION
Only populates changeset entities that are applications
|
ENTITY_DIRECTORY
Only populates changeset entities that are directories
|
ENTITY_GROUP
Only populates changeset entities that are groups
|
ENTITY_USER
Only populates changeset entities that are users
|
EVENT_TYPE
Only populates the event type of the changesets
|
SOURCE
Only populates the source of the changesets
|
Modifier and Type | Method and Description |
---|---|
static AuditLogChangesetProjection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogChangesetProjection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogChangesetProjection EVENT_TYPE
public static final AuditLogChangesetProjection AUTHOR
public static final AuditLogChangesetProjection ENTITY_USER
public static final AuditLogChangesetProjection ENTITY_GROUP
public static final AuditLogChangesetProjection ENTITY_APPLICATION
public static final AuditLogChangesetProjection ENTITY_DIRECTORY
public static final AuditLogChangesetProjection SOURCE
public static AuditLogChangesetProjection[] values()
for (AuditLogChangesetProjection c : AuditLogChangesetProjection.values()) System.out.println(c);
public static AuditLogChangesetProjection 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 © 2021 Atlassian. All rights reserved.