no.ssb.jsonstat.v1.Data Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stat-java Show documentation
Show all versions of json-stat-java Show documentation
Json stat implementation in Java
The newest version!
package no.ssb.jsonstat.v1;
import java.util.Optional;
/**
* Created with IntelliJ IDEA.
* User: erlhamna
* Date: 16.10.13
* Time: 16:32
* To change this template use File | Settings | File Templates.
*/
public final class Data {
private final Object value;
private final Optional status;
public Data(Object value, Optional status) {
this.value = value;
this.status = status;
}
public Object getValue() {
return value;
}
public Optional getStatus() {
return status;
}
@Override
public String toString() {
return value.toString();
}
}