public enum AffectedEntityType extends Enum<AffectedEntityType>
AffectedEntity
Enum Constant and Description |
---|
ANONYMIZE
Entities for which the user properties, like user key/username, can be automatically updated.
|
MANUAL
Entities that can't be automatically and safely updated and require manual inspection.
|
REMOVE
Entities that relate only to the user being anonymized and can be safely removed.
|
TRANSFER_OWNERSHIP
Entities for which the ownership has to be transferred because they won't work correctly for deactivated users.
|
Modifier and Type | Method and Description |
---|---|
static AffectedEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AffectedEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AffectedEntityType ANONYMIZE
public static final AffectedEntityType TRANSFER_OWNERSHIP
public static final AffectedEntityType REMOVE
public static final AffectedEntityType MANUAL
public static AffectedEntityType[] values()
for (AffectedEntityType c : AffectedEntityType.values()) System.out.println(c);
public static AffectedEntityType 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 © 2002-2023 Atlassian. All Rights Reserved.