com.arangodb.util.GraphVerticesOptions Maven / Gradle / Ivy
package com.arangodb.util;
import java.util.List;
public class GraphVerticesOptions {
private List vertexCollectionRestriction;
/**
* One or multiple vertex collections that should be considered.
*
* @return One or multiple vertex collections that should be considered.
*/
public List getVertexCollectionRestriction() {
return vertexCollectionRestriction;
}
/**
* One or multiple vertex collections that should be considered.
*
* @param vertexCollectionRestriction
*/
public void setVertexCollectionRestriction(List vertexCollectionRestriction) {
this.vertexCollectionRestriction = vertexCollectionRestriction;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy