![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.model.EdgeCollectionRemoveOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
package com.arangodb.model;
public class EdgeCollectionRemoveOptions {
private Boolean waitForSync;
private Boolean dropCollections;
public Boolean getWaitForSync() {
return waitForSync;
}
/**
* @param waitForSync Define if the request should wait until synced to disk.
* @return this
*/
public EdgeCollectionRemoveOptions waitForSync(Boolean waitForSync) {
this.waitForSync = waitForSync;
return this;
}
public Boolean getDropCollections() {
return dropCollections;
}
/**
* @param dropCollections Drop the collection as well. Collection will only be dropped if it is not used in other
* graphs.
* @return this
*/
public EdgeCollectionRemoveOptions dropCollections(Boolean dropCollections) {
this.dropCollections = dropCollections;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy