Enum GoogleDriveApiName
- java.lang.Object
-
- java.lang.Enum<GoogleDriveApiName>
-
- org.apache.camel.component.google.drive.internal.GoogleDriveApiName
-
- All Implemented Interfaces:
Serializable,Comparable<GoogleDriveApiName>,org.apache.camel.support.component.ApiName
public enum GoogleDriveApiName extends Enum<GoogleDriveApiName> implements org.apache.camel.support.component.ApiName
CamelApiNameEnumeration for Component GoogleDrive
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRIVE_ABOUTDRIVE_APPSDRIVE_CHANGESDRIVE_CHANNELSDRIVE_CHILDRENDRIVE_COMMENTSDRIVE_DRIVESDRIVE_FILESDRIVE_PARENTSDRIVE_PERMISSIONSDRIVE_PROPERTIESDRIVE_REPLIESDRIVE_REVISIONSDRIVE_TEAMDRIVES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()static GoogleDriveApiNamevalueOf(String name)Returns the enum constant of this type with the specified name.static GoogleDriveApiName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRIVE_ABOUT
public static final GoogleDriveApiName DRIVE_ABOUT
-
DRIVE_APPS
public static final GoogleDriveApiName DRIVE_APPS
-
DRIVE_CHANGES
public static final GoogleDriveApiName DRIVE_CHANGES
-
DRIVE_CHANNELS
public static final GoogleDriveApiName DRIVE_CHANNELS
-
DRIVE_CHILDREN
public static final GoogleDriveApiName DRIVE_CHILDREN
-
DRIVE_COMMENTS
public static final GoogleDriveApiName DRIVE_COMMENTS
-
DRIVE_FILES
public static final GoogleDriveApiName DRIVE_FILES
-
DRIVE_PARENTS
public static final GoogleDriveApiName DRIVE_PARENTS
-
DRIVE_PERMISSIONS
public static final GoogleDriveApiName DRIVE_PERMISSIONS
-
DRIVE_PROPERTIES
public static final GoogleDriveApiName DRIVE_PROPERTIES
-
DRIVE_DRIVES
public static final GoogleDriveApiName DRIVE_DRIVES
-
DRIVE_TEAMDRIVES
public static final GoogleDriveApiName DRIVE_TEAMDRIVES
-
DRIVE_REPLIES
public static final GoogleDriveApiName DRIVE_REPLIES
-
DRIVE_REVISIONS
public static final GoogleDriveApiName DRIVE_REVISIONS
-
-
Method Detail
-
values
public static GoogleDriveApiName[] 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 (GoogleDriveApiName c : GoogleDriveApiName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoogleDriveApiName 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:
getNamein interfaceorg.apache.camel.support.component.ApiName
-
-