Enum SkippedObjectsReason
- java.lang.Object
-
- java.lang.Enum<SkippedObjectsReason>
-
- com.atlassian.confluence.impl.backuprestore.statistics.SkippedObjectsReason
-
- All Implemented Interfaces:
Serializable
,Comparable<SkippedObjectsReason>
public enum SkippedObjectsReason extends Enum<SkippedObjectsReason>
Reason for skipping objects on backup or restore.- Since:
- 8.3.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID_FIELDS
NOT_SATISFIED_DEPENDENCIES
PARENT_NO_LONGER_EXISTS
PARENT_WAS_NOT_PERSISTED
PERSISTER_NOT_FOUND
SPACE_IS_NOT_ALLOWED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SkippedObjectsReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static SkippedObjectsReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID_FIELDS
public static final SkippedObjectsReason INVALID_FIELDS
-
PERSISTER_NOT_FOUND
public static final SkippedObjectsReason PERSISTER_NOT_FOUND
-
PARENT_WAS_NOT_PERSISTED
public static final SkippedObjectsReason PARENT_WAS_NOT_PERSISTED
-
NOT_SATISFIED_DEPENDENCIES
public static final SkippedObjectsReason NOT_SATISFIED_DEPENDENCIES
-
SPACE_IS_NOT_ALLOWED
public static final SkippedObjectsReason SPACE_IS_NOT_ALLOWED
-
PARENT_NO_LONGER_EXISTS
public static final SkippedObjectsReason PARENT_NO_LONGER_EXISTS
-
-
Method Detail
-
values
public static SkippedObjectsReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SkippedObjectsReason c : SkippedObjectsReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SkippedObjectsReason valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-