Enum BoxFilesManagerApiMethod
- java.lang.Object
-
- java.lang.Enum<BoxFilesManagerApiMethod>
-
- org.apache.camel.component.box.internal.BoxFilesManagerApiMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<BoxFilesManagerApiMethod>
,org.apache.camel.support.component.ApiMethod
public enum BoxFilesManagerApiMethod extends Enum<BoxFilesManagerApiMethod> implements org.apache.camel.support.component.ApiMethod
CamelApiMethod
Enumeration for org.apache.camel.component.box.api.BoxFilesManager
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getArgNames()
List<Class<?>>
getArgTypes()
Method
getMethod()
String
getName()
Class<?>
getResultType()
static BoxFilesManagerApiMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static BoxFilesManagerApiMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECK_UPLOAD
public static final BoxFilesManagerApiMethod CHECK_UPLOAD
-
COPY_FILE
public static final BoxFilesManagerApiMethod COPY_FILE
-
CREATE_FILE_METADATA
public static final BoxFilesManagerApiMethod CREATE_FILE_METADATA
-
CREATE_FILE_SHARED_LINK
public static final BoxFilesManagerApiMethod CREATE_FILE_SHARED_LINK
-
DELETE_FILE
public static final BoxFilesManagerApiMethod DELETE_FILE
-
DELETE_FILE_METADATA
public static final BoxFilesManagerApiMethod DELETE_FILE_METADATA
-
DELETE_FILE_VERSION
public static final BoxFilesManagerApiMethod DELETE_FILE_VERSION
-
DOWNLOAD_FILE
public static final BoxFilesManagerApiMethod DOWNLOAD_FILE
-
DOWNLOAD_PREVIOUS_FILE_VERSION
public static final BoxFilesManagerApiMethod DOWNLOAD_PREVIOUS_FILE_VERSION
-
GET_DOWNLOAD_URL
public static final BoxFilesManagerApiMethod GET_DOWNLOAD_URL
-
GET_FILE_INFO
public static final BoxFilesManagerApiMethod GET_FILE_INFO
-
GET_FILE_METADATA
public static final BoxFilesManagerApiMethod GET_FILE_METADATA
-
GET_FILE_PREVIEW_LINK
public static final BoxFilesManagerApiMethod GET_FILE_PREVIEW_LINK
-
GET_FILE_THUMBNAIL
public static final BoxFilesManagerApiMethod GET_FILE_THUMBNAIL
-
GET_FILE_VERSIONS
public static final BoxFilesManagerApiMethod GET_FILE_VERSIONS
-
MOVE_FILE
public static final BoxFilesManagerApiMethod MOVE_FILE
-
PROMOTE_FILE_VERSION
public static final BoxFilesManagerApiMethod PROMOTE_FILE_VERSION
-
RENAME_FILE
public static final BoxFilesManagerApiMethod RENAME_FILE
-
UPDATE_FILE_INFO
public static final BoxFilesManagerApiMethod UPDATE_FILE_INFO
-
UPDATE_FILE_METADATA
public static final BoxFilesManagerApiMethod UPDATE_FILE_METADATA
-
UPLOAD_FILE
public static final BoxFilesManagerApiMethod UPLOAD_FILE
-
UPLOAD_NEW_FILE_VERSION
public static final BoxFilesManagerApiMethod UPLOAD_NEW_FILE_VERSION
-
-
Method Detail
-
values
public static BoxFilesManagerApiMethod[] 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 (BoxFilesManagerApiMethod c : BoxFilesManagerApiMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BoxFilesManagerApiMethod 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
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.apache.camel.support.component.ApiMethod
-
getResultType
public Class<?> getResultType()
- Specified by:
getResultType
in interfaceorg.apache.camel.support.component.ApiMethod
-
getArgNames
public List<String> getArgNames()
- Specified by:
getArgNames
in interfaceorg.apache.camel.support.component.ApiMethod
-
getArgTypes
public List<Class<?>> getArgTypes()
- Specified by:
getArgTypes
in interfaceorg.apache.camel.support.component.ApiMethod
-
getMethod
public Method getMethod()
- Specified by:
getMethod
in interfaceorg.apache.camel.support.component.ApiMethod
-
-