Package org.apache.camel.component.cmis
Enum CamelCMISActions
- java.lang.Object
-
- java.lang.Enum<CamelCMISActions>
-
- org.apache.camel.component.cmis.CamelCMISActions
-
- All Implemented Interfaces:
Serializable,Comparable<CamelCMISActions>
public enum CamelCMISActions extends Enum<CamelCMISActions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCEL_CHECK_OUTCHECK_INCHECK_OUTCOPY_DOCUMENTCOPY_FOLDERCREATECREATE_FOLDER_BY_PATHDELETE_DOCUMENTDELETE_FOLDERDOWNLOAD_DOCUMENTFIND_OBJECT_BY_IDFIND_OBJECT_BY_PATHGET_FOLDERLIST_FOLDERMOVE_DOCUMENTMOVE_FOLDERRENAME
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract StringgetMethodName()static CamelCMISActionsvalueOf(String name)Returns the enum constant of this type with the specified name.static CamelCMISActions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final CamelCMISActions CREATE
-
DELETE_DOCUMENT
public static final CamelCMISActions DELETE_DOCUMENT
-
DELETE_FOLDER
public static final CamelCMISActions DELETE_FOLDER
-
MOVE_DOCUMENT
public static final CamelCMISActions MOVE_DOCUMENT
-
MOVE_FOLDER
public static final CamelCMISActions MOVE_FOLDER
-
COPY_DOCUMENT
public static final CamelCMISActions COPY_DOCUMENT
-
COPY_FOLDER
public static final CamelCMISActions COPY_FOLDER
-
RENAME
public static final CamelCMISActions RENAME
-
CHECK_IN
public static final CamelCMISActions CHECK_IN
-
CHECK_OUT
public static final CamelCMISActions CHECK_OUT
-
CANCEL_CHECK_OUT
public static final CamelCMISActions CANCEL_CHECK_OUT
-
GET_FOLDER
public static final CamelCMISActions GET_FOLDER
-
LIST_FOLDER
public static final CamelCMISActions LIST_FOLDER
-
FIND_OBJECT_BY_ID
public static final CamelCMISActions FIND_OBJECT_BY_ID
-
FIND_OBJECT_BY_PATH
public static final CamelCMISActions FIND_OBJECT_BY_PATH
-
CREATE_FOLDER_BY_PATH
public static final CamelCMISActions CREATE_FOLDER_BY_PATH
-
DOWNLOAD_DOCUMENT
public static final CamelCMISActions DOWNLOAD_DOCUMENT
-
-
Method Detail
-
values
public static CamelCMISActions[] 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 (CamelCMISActions c : CamelCMISActions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CamelCMISActions 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
-
getMethodName
public abstract String getMethodName()
-
-