All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.model.VertexCollectionDropOptions Maven / Gradle / Ivy

There is a newer version: 7.9.0
Show newest version
package com.arangodb.model;

/**
 * @see API
 * Documentation
 */
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 - 2024 Weber Informatics LLC | Privacy Policy