Enum Class UserAnonymizationProgressBean.AnonymizationStatus
java.lang.Object
java.lang.Enum<UserAnonymizationProgressBean.AnonymizationStatus>
com.atlassian.jira.rest.v2.user.anonymization.UserAnonymizationProgressBean.AnonymizationStatus
- All Implemented Interfaces:
Serializable
,Comparable<UserAnonymizationProgressBean.AnonymizationStatus>
,Constable
- Enclosing class:
- UserAnonymizationProgressBean
public static enum UserAnonymizationProgressBean.AnonymizationStatus
extends Enum<UserAnonymizationProgressBean.AnonymizationStatus>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe anonymization process finished.The anonymization process is still being performed.There is no connection with the node that was executing the anonymization process.The anonymization process hasn't been started because the validation has failed for some anonymization handlers. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMPLETED
The anonymization process finished. Some errors or warnings might be present. -
INTERRUPTED
There is no connection with the node that was executing the anonymization process. Usually, this means that the node crashed and the anonymization task needs to be cleaned up from the cluster. -
IN_PROGRESS
The anonymization process is still being performed. -
VALIDATION_FAILED
The anonymization process hasn't been started because the validation has failed for some anonymization handlers.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-