Enum FilePlanComponentKind
- java.lang.Object
-
- java.lang.Enum<FilePlanComponentKind>
-
- org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanComponentKind
-
- All Implemented Interfaces:
Serializable
,Comparable<FilePlanComponentKind>
@AlfrescoPublicApi public enum FilePlanComponentKind extends Enum<FilePlanComponentKind>
File plan component kind enumeration class.
Helpful when trying to determine the characteristics of a kind of file plan component.- Author:
- Roy Wetherall
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISPOSITION_SCHEDULE
FILE_PLAN
FILE_PLAN_COMPONENT
HOLD
HOLD_CONTAINER
RECORD
RECORD_CATEGORY
RECORD_FOLDER
TRANSFER
TRANSFER_CONTAINER
UNFILED_RECORD_CONTAINER
UNFILED_RECORD_FOLDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilePlanComponentKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static FilePlanComponentKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_PLAN_COMPONENT
public static final FilePlanComponentKind FILE_PLAN_COMPONENT
-
FILE_PLAN
public static final FilePlanComponentKind FILE_PLAN
-
RECORD_CATEGORY
public static final FilePlanComponentKind RECORD_CATEGORY
-
RECORD_FOLDER
public static final FilePlanComponentKind RECORD_FOLDER
-
RECORD
public static final FilePlanComponentKind RECORD
-
TRANSFER
public static final FilePlanComponentKind TRANSFER
-
TRANSFER_CONTAINER
public static final FilePlanComponentKind TRANSFER_CONTAINER
-
HOLD
public static final FilePlanComponentKind HOLD
-
HOLD_CONTAINER
public static final FilePlanComponentKind HOLD_CONTAINER
-
DISPOSITION_SCHEDULE
public static final FilePlanComponentKind DISPOSITION_SCHEDULE
-
UNFILED_RECORD_CONTAINER
public static final FilePlanComponentKind UNFILED_RECORD_CONTAINER
-
UNFILED_RECORD_FOLDER
public static final FilePlanComponentKind UNFILED_RECORD_FOLDER
-
-
Method Detail
-
values
public static FilePlanComponentKind[] 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 (FilePlanComponentKind c : FilePlanComponentKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilePlanComponentKind 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
-
-