dnet-hadoop/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/KeyValue.java

45 lines
747 B
Java
Raw Normal View History

package eu.dnetlib.dhp.schema.dump.oaf;
2020-06-15 11:06:56 +02:00
import java.io.Serializable;
import org.apache.commons.lang3.StringUtils;
2020-06-15 11:06:56 +02:00
import com.fasterxml.jackson.annotation.JsonIgnore;
public class KeyValue implements Serializable {
private String key;
private String value;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
2020-06-15 11:06:56 +02:00
public static KeyValue newInstance(String key, String value) {
KeyValue inst = new KeyValue();
inst.key = key;
inst.value = value;
return inst;
}
@JsonIgnore
public boolean isBlank() {
return StringUtils.isBlank(key) && StringUtils.isBlank(value);
}
}