no.ssb.jsonstat.v2.DatasetBuilder 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.v2;
import java.time.Instant;
/**
* Base builder interface for {@link Dataset}
*/
public interface DatasetBuilder {
DatasetBuilder withLabel(String label);
DatasetBuilder withSource(String source);
DatasetBuilder updatedAt(Instant update);
DatasetBuilder withExtension(Object jsonNodes);
DatasetValueBuilder withDimensions(Iterable values);
DatasetValueBuilder withDimensions(Dimension.Builder... values);
}