Package com.gpudb.protocol
Class CreateBackupRequest.BackupType
- java.lang.Object
-
- com.gpudb.protocol.CreateBackupRequest.BackupType
-
- Enclosing class:
- CreateBackupRequest
public static final class CreateBackupRequest.BackupType extends Object
A set of string constants for theCreateBackupRequestparameterbackupType.Type of snapshot to create.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDIFFERENTIALSnapshot of changes in the database objects and data since the last full snapshot.static StringFULLSnapshot of the given database objects and data.static StringINCREMENTALSnapshot of changes in the database objects and data since the last snapshot of any kind.
-
-
-
Field Detail
-
INCREMENTAL
public static final String INCREMENTAL
Snapshot of changes in the database objects and data since the last snapshot of any kind.- See Also:
- Constant Field Values
-
DIFFERENTIAL
public static final String DIFFERENTIAL
Snapshot of changes in the database objects and data since the last full snapshot.- See Also:
- Constant Field Values
-
FULL
public static final String FULL
Snapshot of the given database objects and data.- See Also:
- Constant Field Values
-
-