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

com.github.ddm4j.api.document.common.model.KVEntity Maven / Gradle / Ivy

package com.github.ddm4j.api.document.common.model;

public class KVEntity {
	private K left;
	private V right;

	public K getLeft() {
		return left;
	}

	public void setLeft(K left) {
		this.left = left;
	}

	public V getRight() {
		return right;
	}

	public void setRight(V Right) {
		this.right = Right;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy