Class DriveType
- java.lang.Object
-
- com.orchestranetworks.addon.dama.ext.bean.DriveType
-
public final class DriveType extends java.lang.ObjectDefines the drive type.- Since:
- 1.6.0
-
-
Field Summary
Fields Modifier and Type Field Description static DriveTypeAWS_S3static DriveTypeAZURE_BLOBstatic DriveTypeCUSTOMstatic DriveTypeEXTERNAL_MANAGEMENTstatic DriveTypeFILE_SYSTEMThe Constant FileSystem.static DriveTypeGG_DRIVEstatic DriveTypeSHARE_POINT
-
Constructor Summary
Constructors Constructor Description DriveType(java.lang.String driveType)Instantiates a new drive type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetString()Returns the drive type string.inthashCode()booleanisAwsS3Connector()Returnstrueif the drive type is [ON] Amazon S3.booleanisAzureBlobConnector()Returnstrueif the drive type is [ON] Azure Blob.booleanisCustomConnector()Returnstrueif the drive type is [ON] Custom connector.booleanisExternalConnector()Returnstrueif the drive type is [ON] External management.booleanisExternalManagement()Returnstrueif the drive type is [ON] External management.booleanisFileSystem()Returnstrueif the drive type is [ON] File system.booleanisGGDriveConnector()Returnstrueif the drive type is [ON] Google Drive.booleanisSharePointConnector()Returnstrueif the drive type is [ON] SharePoint.
-
-
-
Field Detail
-
FILE_SYSTEM
public static final DriveType FILE_SYSTEM
The Constant FileSystem.
-
EXTERNAL_MANAGEMENT
public static final DriveType EXTERNAL_MANAGEMENT
- Since:
- 1.8.0
-
AWS_S3
public static final DriveType AWS_S3
- Since:
- 2.3.0
-
CUSTOM
public static final DriveType CUSTOM
-
AZURE_BLOB
public static final DriveType AZURE_BLOB
- Since:
- 2.5.0
-
GG_DRIVE
public static final DriveType GG_DRIVE
- Since:
- 2.6.0
-
SHARE_POINT
public static final DriveType SHARE_POINT
- Since:
- 2.6.0
-
-
Method Detail
-
getString
public java.lang.String getString()
Returns the drive type string.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object- See Also:
Object.hashCode()
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object- See Also:
Object.equals(java.lang.Object)
-
isFileSystem
public boolean isFileSystem()
Returnstrueif the drive type is [ON] File system.
-
isExternalManagement
public boolean isExternalManagement()
Returnstrueif the drive type is [ON] External management.
-
isAwsS3Connector
public boolean isAwsS3Connector()
Returnstrueif the drive type is [ON] Amazon S3.- Since:
- 2.3.0
-
isCustomConnector
public boolean isCustomConnector()
Returnstrueif the drive type is [ON] Custom connector.- Since:
- 2.3.0
-
isExternalConnector
public boolean isExternalConnector()
Returnstrueif the drive type is [ON] External management. The same withisExternalManagement()- Since:
- 2.3.0
-
isAzureBlobConnector
public boolean isAzureBlobConnector()
Returnstrueif the drive type is [ON] Azure Blob.- Since:
- 2.5.0
-
isGGDriveConnector
public boolean isGGDriveConnector()
Returnstrueif the drive type is [ON] Google Drive.- Since:
- 2.6.0
-
isSharePointConnector
public boolean isSharePointConnector()
Returnstrueif the drive type is [ON] SharePoint.- Since:
- 2.6.0
-
-