Enum ExternalRepositoryShowValue
- java.lang.Object
-
- java.lang.Enum<ExternalRepositoryShowValue>
-
- com.blackberry.workspaces.sdk.api.enums.ExternalRepositoryShowValue
-
- All Implemented Interfaces:
Serializable
,Comparable<ExternalRepositoryShowValue>
public enum ExternalRepositoryShowValue extends Enum<ExternalRepositoryShowValue>
An enum of values for external repository display
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOX
BOXCIFS
CIFSCMIS
CMISDROPBOX
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
IMANAGEIMANAGE_CLOUD
IMANAGE_CLOUDNONE
NoneONE_DRIVE
OneDriveSHAREPOINT
SharePoint
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalRepositoryShowValue
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExternalRepositoryShowValue[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ExternalRepositoryShowValue NONE
None
-
SHAREPOINT
public static final ExternalRepositoryShowValue SHAREPOINT
SharePoint
-
CIFS
public static final ExternalRepositoryShowValue CIFS
CIFS
-
GOOGLE_DRIVE
public static final ExternalRepositoryShowValue GOOGLE_DRIVE
Google Drive
-
CMIS
public static final ExternalRepositoryShowValue CMIS
CMIS
-
ONE_DRIVE
public static final ExternalRepositoryShowValue ONE_DRIVE
OneDrive
-
GEMS_CIFS
public static final ExternalRepositoryShowValue GEMS_CIFS
GEMS CIFS
-
GEMS_SHAREPOINT
public static final ExternalRepositoryShowValue GEMS_SHAREPOINT
GEMS SHAREPOINT
-
GEMS_SHAREPOINT_ONLINE
public static final ExternalRepositoryShowValue GEMS_SHAREPOINT_ONLINE
GEMS SHAREPOINT ONLINE
-
GEMS_ONE_DRIVE
public static final ExternalRepositoryShowValue GEMS_ONE_DRIVE
GEMS ONE DRIVE
-
GEMS_CMIS
public static final ExternalRepositoryShowValue GEMS_CMIS
GEMS CMIS
-
GEMS_CMIS_ONLINE
public static final ExternalRepositoryShowValue GEMS_CMIS_ONLINE
GEMS CMIS ONLINE
-
IMANAGE
public static final ExternalRepositoryShowValue IMANAGE
IMANAGE
-
DROPBOX
public static final ExternalRepositoryShowValue DROPBOX
DROPBOX
-
IMANAGE_CLOUD
public static final ExternalRepositoryShowValue IMANAGE_CLOUD
IMANAGE_CLOUD
-
BOX
public static final ExternalRepositoryShowValue BOX
BOX
-
-
Method Detail
-
values
public static ExternalRepositoryShowValue[] 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 (ExternalRepositoryShowValue c : ExternalRepositoryShowValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalRepositoryShowValue 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
-
-