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

org.ansj.domain.KV Maven / Gradle / Ivy

There is a newer version: 5.1.6
Show newest version
package org.ansj.domain;

public class KV {

	private K k;

	private V v;

	private KV(K k, V v) {
		this.k = k;
		this.v = v;
	}

	public static  KV with(K k, V v) {
		return new KV(k, v);
	}

	public void setK(K k) {
		this.k = k;
	}

	public void setV(V v) {
		this.v = v;
	}

	public K getK() {
		return k;
	}

	public V getV() {
		return v;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy