Package org.alfresco.rest.core.v0
Enum BaseAPI.RMProperty
- java.lang.Object
-
- java.lang.Enum<BaseAPI.RMProperty>
-
- org.alfresco.rest.core.v0.BaseAPI.RMProperty
-
- All Implemented Interfaces:
Serializable,Comparable<BaseAPI.RMProperty>
- Enclosing class:
- BaseAPI
public static enum BaseAPI.RMProperty extends Enum<BaseAPI.RMProperty>
Used to set RM items properties including records, categories and folders
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORBOXCONTENTDESCRIPTIONFILENAMENUMBER_OF_COPIESORIGINATING_ORGANIZATIONORIGINATORPHYSICAL_SIZEPUBLICATION_DATESHELFSTORAGE_LOCATIONTITLE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseAPI.RMPropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static BaseAPI.RMProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final BaseAPI.RMProperty NAME
-
TITLE
public static final BaseAPI.RMProperty TITLE
-
CONTENT
public static final BaseAPI.RMProperty CONTENT
-
DESCRIPTION
public static final BaseAPI.RMProperty DESCRIPTION
-
AUTHOR
public static final BaseAPI.RMProperty AUTHOR
-
PHYSICAL_SIZE
public static final BaseAPI.RMProperty PHYSICAL_SIZE
-
NUMBER_OF_COPIES
public static final BaseAPI.RMProperty NUMBER_OF_COPIES
-
STORAGE_LOCATION
public static final BaseAPI.RMProperty STORAGE_LOCATION
-
SHELF
public static final BaseAPI.RMProperty SHELF
-
BOX
public static final BaseAPI.RMProperty BOX
-
FILE
public static final BaseAPI.RMProperty FILE
-
ORIGINATOR
public static final BaseAPI.RMProperty ORIGINATOR
-
ORIGINATING_ORGANIZATION
public static final BaseAPI.RMProperty ORIGINATING_ORGANIZATION
-
PUBLICATION_DATE
public static final BaseAPI.RMProperty PUBLICATION_DATE
-
-
Method Detail
-
values
public static BaseAPI.RMProperty[] 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 (BaseAPI.RMProperty c : BaseAPI.RMProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseAPI.RMProperty 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
-
-