public enum Action extends Enum<Action>
Modifier and Type | Method and Description |
---|---|
static Action |
fromValue(String v) |
String |
value() |
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action CAN_DELETE_OBJECT
public static final Action CAN_UPDATE_PROPERTIES
public static final Action CAN_GET_FOLDER_TREE
public static final Action CAN_GET_PROPERTIES
public static final Action CAN_GET_OBJECT_RELATIONSHIPS
public static final Action CAN_GET_OBJECT_PARENTS
public static final Action CAN_GET_FOLDER_PARENT
public static final Action CAN_GET_DESCENDANTS
public static final Action CAN_MOVE_OBJECT
public static final Action CAN_DELETE_CONTENT_STREAM
public static final Action CAN_CHECK_OUT
public static final Action CAN_CANCEL_CHECK_OUT
public static final Action CAN_CHECK_IN
public static final Action CAN_SET_CONTENT_STREAM
public static final Action CAN_GET_ALL_VERSIONS
public static final Action CAN_ADD_OBJECT_TO_FOLDER
public static final Action CAN_REMOVE_OBJECT_FROM_FOLDER
public static final Action CAN_GET_CONTENT_STREAM
public static final Action CAN_APPLY_POLICY
public static final Action CAN_GET_APPLIED_POLICIES
public static final Action CAN_REMOVE_POLICY
public static final Action CAN_GET_CHILDREN
public static final Action CAN_CREATE_DOCUMENT
public static final Action CAN_CREATE_FOLDER
public static final Action CAN_CREATE_RELATIONSHIP
public static final Action CAN_CREATE_ITEM
public static final Action CAN_DELETE_TREE
public static final Action CAN_GET_RENDITIONS
public static final Action CAN_GET_ACL
public static final Action CAN_APPLY_ACL
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String value()
Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.