Package com.comsol.api.database.param
Interface DeleteSnapshotsParamGenerator
-
- All Superinterfaces:
DatabaseApiValue
,DeleteSnapshotsParam
public interface DeleteSnapshotsParamGenerator extends DeleteSnapshotsParam
A generator for input parameters used when deleting snapshots in a repository.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DeleteSnapshotsParamGenerator
withSnapshotKeys(SnapshotKey... snapshotKeys)
Set the identifying keys of all snapshots that should be deleted.DeleteSnapshotsParamGenerator
withSnapshotKeys(java.util.Collection<SnapshotKey> snapshotKeys)
Set the identifying keys of all snapshots that should be deleted.-
Methods inherited from interface com.comsol.api.database.param.DeleteSnapshotsParam
snapshotKeys
-
-
-
-
Method Detail
-
withSnapshotKeys
default DeleteSnapshotsParamGenerator withSnapshotKeys(SnapshotKey... snapshotKeys)
Set the identifying keys of all snapshots that should be deleted.- Parameters:
snapshotKeys
- The identifying keys of all snapshots that should be deleted.- Returns:
- A copy of this instance.
-
withSnapshotKeys
DeleteSnapshotsParamGenerator withSnapshotKeys(java.util.Collection<SnapshotKey> snapshotKeys)
Set the identifying keys of all snapshots that should be deleted.- Parameters:
snapshotKeys
- The identifying keys of all snapshots that should be deleted.- Returns:
- A copy of this instance.
-
-