org.ansj.domain.KV Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ansj_seg Show documentation
Show all versions of ansj_seg Show documentation
best java chinese word seg !
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;
}
}