Package org.alfresco.repo.content
Enum ObjectStorageProps
- All Implemented Interfaces:
Serializable
,Comparable<ObjectStorageProps>
,java.lang.constant.Constable
Enumeration with "header" values for Alfresco derived Storage Properties
Values of this enum should be used when adding Alfresco derived key-value pairs in Storage Properties map.
Subject to expand/change.
- Author:
- mpichura
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExpiry date and time of object's content retrieved from archive.Object's content retrieval from archive is in progressObject's content is archived and not immediately accessible. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static ObjectStorageProps
Returns the enum constant of this type with the specified name.static ObjectStorageProps[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
X_ALF_ARCHIVED
Object's content is archived and not immediately accessible. -
X_ALF_ARCHIVE_RESTORE_IN_PROGRESS
Object's content retrieval from archive is in progress -
X_ALF_ARCHIVE_RESTORE_EXPIRY
Expiry date and time of object's content retrieved from archive. Use YYYYMMDDThhmmssZ (ISO-8601) datetime format when using this value as key in Storage Properties map.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-