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

com.arangodb.entity.EdgeDefinitionEntity Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb.entity;

import java.util.ArrayList;
import java.util.List;

public class EdgeDefinitionEntity {

	String collection;
	List from;
	List to;

	public EdgeDefinitionEntity() {
		this.from = new ArrayList();
		this.to = new ArrayList();
	}

	public String getCollection() {
		return collection;
	}

	public EdgeDefinitionEntity setCollection(String collection) {
		this.collection = collection;
		return this;
	}

	public List getFrom() {
		return from;
	}

	public EdgeDefinitionEntity setFrom(List from) {
		this.from = from;
		return this;
	}

	public List getTo() {
		return to;
	}

	public EdgeDefinitionEntity setTo(List to) {
		this.to = to;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy