![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.model.VertexCollectionRemoveOptions 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 VertexCollectionRemoveOptions {
private Boolean dropCollection;
public Boolean getDropCollection() {
return dropCollection;
}
/**
* @param dropCollection Drop the collection as well. Collection will only be dropped if it is not used in other
* graphs.
* @return this
*/
public VertexCollectionRemoveOptions dropCollection(Boolean dropCollection) {
this.dropCollection = dropCollection;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy