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

com.arangodb.util.GraphVerticesOptions Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
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