Enum ActionsOnRule
- java.lang.Object
-
- java.lang.Enum<ActionsOnRule>
-
- org.alfresco.rest.rm.community.model.rules.ActionsOnRule
-
- All Implemented Interfaces:
Serializable,Comparable<ActionsOnRule>
public enum ActionsOnRule extends Enum<ActionsOnRule>
Action values.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetActionValue()static ActionsOnRulevalueOf(String name)Returns the enum constant of this type with the specified name.static ActionsOnRule[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETE_RECORD
public static final ActionsOnRule COMPLETE_RECORD
-
REOPEN_RECORD
public static final ActionsOnRule REOPEN_RECORD
-
OPEN_RECORD_FOLDER
public static final ActionsOnRule OPEN_RECORD_FOLDER
-
CLOSE_RECORD_FOLDER
public static final ActionsOnRule CLOSE_RECORD_FOLDER
-
FILE_TO
public static final ActionsOnRule FILE_TO
-
COPY_TO
public static final ActionsOnRule COPY_TO
-
MOVE_TO
public static final ActionsOnRule MOVE_TO
-
LINK_TO
public static final ActionsOnRule LINK_TO
-
REJECT
public static final ActionsOnRule REJECT
-
REQUEST_INFORMATION
public static final ActionsOnRule REQUEST_INFORMATION
-
COMPLETE_EVENT
public static final ActionsOnRule COMPLETE_EVENT
-
ADD_RECORD_TYPES
public static final ActionsOnRule ADD_RECORD_TYPES
-
EXECUTE_SCRIPT
public static final ActionsOnRule EXECUTE_SCRIPT
-
SEND_EMAIL
public static final ActionsOnRule SEND_EMAIL
-
SET_PROPERTY_VALUE_COLL_SITE
public static final ActionsOnRule SET_PROPERTY_VALUE_COLL_SITE
-
SET_PROPERTY_VALUE_RM
public static final ActionsOnRule SET_PROPERTY_VALUE_RM
-
HIDE_RECORD
public static final ActionsOnRule HIDE_RECORD
-
DECLARE_VERSION_AS_RECORD
public static final ActionsOnRule DECLARE_VERSION_AS_RECORD
-
DECLARE_AS_RECORD
public static final ActionsOnRule DECLARE_AS_RECORD
-
WORM_LOCK
public static final ActionsOnRule WORM_LOCK
-
-
Method Detail
-
values
public static ActionsOnRule[] 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 (ActionsOnRule c : ActionsOnRule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionsOnRule 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
-
getActionValue
public String getActionValue()
-
-