Enum BulkStatusReportEnum
- java.lang.Object
-
- java.lang.Enum<BulkStatusReportEnum>
-
- com.atlassian.confluence.impl.hibernate.bulk.BulkStatusReportEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<BulkStatusReportEnum>
public enum BulkStatusReportEnum extends Enum<BulkStatusReportEnum>
- Since:
- 5.10
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BulkStatusReportEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static BulkStatusReportEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ERROR_UNKNOWN
public static final BulkStatusReportEnum ERROR_UNKNOWN
-
ERROR_LOCK_FAILED
public static final BulkStatusReportEnum ERROR_LOCK_FAILED
-
ERROR_RELINK
public static final BulkStatusReportEnum ERROR_RELINK
-
ERROR_COPY_PAGE
public static final BulkStatusReportEnum ERROR_COPY_PAGE
-
WARN_RENAME_PAGE
public static final BulkStatusReportEnum WARN_RENAME_PAGE
-
WARN_IGNORE_COPY_PERMISSION
public static final BulkStatusReportEnum WARN_IGNORE_COPY_PERMISSION
-
WARN_IGNORE_COPY_ATTACHMENT
public static final BulkStatusReportEnum WARN_IGNORE_COPY_ATTACHMENT
-
WARN_IGNORE_DELETE_PAGE
public static final BulkStatusReportEnum WARN_IGNORE_DELETE_PAGE
-
STATUS_COPIED_PAGES
public static final BulkStatusReportEnum STATUS_COPIED_PAGES
-
STATUS_COPYING_PAGES
public static final BulkStatusReportEnum STATUS_COPYING_PAGES
-
STATUS_RELINK_PAGES
public static final BulkStatusReportEnum STATUS_RELINK_PAGES
-
STATUS_DELETING_PAGES
public static final BulkStatusReportEnum STATUS_DELETING_PAGES
-
STATUS_DELETED_PAGES
public static final BulkStatusReportEnum STATUS_DELETED_PAGES
-
STATUS_MOVING_PAGES
public static final BulkStatusReportEnum STATUS_MOVING_PAGES
-
WARN_IGNORE_VIEW_RESTRICTED
public static final BulkStatusReportEnum WARN_IGNORE_VIEW_RESTRICTED
-
WARN_IGNORE_EDIT_RESTRICTED
public static final BulkStatusReportEnum WARN_IGNORE_EDIT_RESTRICTED
-
-
Method Detail
-
values
public static BulkStatusReportEnum[] 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 (BulkStatusReportEnum c : BulkStatusReportEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BulkStatusReportEnum 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
-
-