![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.model.VertexCollectionDropOptions 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;
/**
* @deprecated use {@link VertexCollectionRemoveOptions} instead
*/
@Deprecated
public class VertexCollectionDropOptions {
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 VertexCollectionDropOptions dropCollection(Boolean dropCollection) {
this.dropCollection = dropCollection;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy