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

no.ssb.jsonstat.v1.Data Maven / Gradle / Ivy

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy