Enum ExternalRepositoryType
- java.lang.Object
-
- java.lang.Enum<ExternalRepositoryType>
-
- com.blackberry.workspaces.sdk.api.enums.ExternalRepositoryType
-
- All Implemented Interfaces:
Serializable
,Comparable<ExternalRepositoryType>
public enum ExternalRepositoryType extends Enum<ExternalRepositoryType>
An enum of external repository type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOX
GEMS BoxCIFS
CIFSCIFS_V20
CIFS V 2.0CMIS
CMISDROPBOX
GEMS DropboxGEMS_CIFS
GEMS CIFSGEMS_CMIS
GEMS CMISGEMS_CMIS_ONLINE
GEMS CMIS ONLINEGEMS_ONE_DRIVE
GEMS ONE DRIVEGEMS_SHAREPOINT
GEMS SHAREPOINTGEMS_SHAREPOINT_ONLINE
GEMS SHAREPOINT ONLINEGOOGLE_DRIVE
Google DriveIMANAGE
GEMS IMANAGEIMANAGE_CLOUD
GEMS IMANAGE CLOUDNONE
NoneONE_DRIVE
OneDriveSHAREPOINT
SharePointSHAREPOINT_ONLINE
SharePoint OnlineSHAREPOINT_V20
SharePoint V 2.0SHAREPOINT_V30
SharePoint V 3.0
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalRepositoryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExternalRepositoryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ExternalRepositoryType NONE
None
-
SHAREPOINT
public static final ExternalRepositoryType SHAREPOINT
SharePoint
-
SHAREPOINT_V20
public static final ExternalRepositoryType SHAREPOINT_V20
SharePoint V 2.0
-
CIFS
public static final ExternalRepositoryType CIFS
CIFS
-
GOOGLE_DRIVE
public static final ExternalRepositoryType GOOGLE_DRIVE
Google Drive
-
CIFS_V20
public static final ExternalRepositoryType CIFS_V20
CIFS V 2.0
-
SHAREPOINT_V30
public static final ExternalRepositoryType SHAREPOINT_V30
SharePoint V 3.0
-
SHAREPOINT_ONLINE
public static final ExternalRepositoryType SHAREPOINT_ONLINE
SharePoint Online
-
CMIS
public static final ExternalRepositoryType CMIS
CMIS
-
ONE_DRIVE
public static final ExternalRepositoryType ONE_DRIVE
OneDrive
-
GEMS_CIFS
public static final ExternalRepositoryType GEMS_CIFS
GEMS CIFS
-
GEMS_SHAREPOINT
public static final ExternalRepositoryType GEMS_SHAREPOINT
GEMS SHAREPOINT
-
GEMS_SHAREPOINT_ONLINE
public static final ExternalRepositoryType GEMS_SHAREPOINT_ONLINE
GEMS SHAREPOINT ONLINE
-
GEMS_ONE_DRIVE
public static final ExternalRepositoryType GEMS_ONE_DRIVE
GEMS ONE DRIVE
-
GEMS_CMIS
public static final ExternalRepositoryType GEMS_CMIS
GEMS CMIS
-
GEMS_CMIS_ONLINE
public static final ExternalRepositoryType GEMS_CMIS_ONLINE
GEMS CMIS ONLINE
-
IMANAGE
public static final ExternalRepositoryType IMANAGE
GEMS IMANAGE
-
DROPBOX
public static final ExternalRepositoryType DROPBOX
GEMS Dropbox
-
IMANAGE_CLOUD
public static final ExternalRepositoryType IMANAGE_CLOUD
GEMS IMANAGE CLOUD
-
BOX
public static final ExternalRepositoryType BOX
GEMS Box
-
-
Method Detail
-
values
public static ExternalRepositoryType[] 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 (ExternalRepositoryType c : ExternalRepositoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalRepositoryType 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
-
-