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

com.xxdb.data.Scalar Maven / Gradle / Ivy

There is a newer version: 3.00.2.2
Show newest version
package com.xxdb.data;

import java.time.temporal.Temporal;
/**
 * 
 * Interface for scalar object
 *
 */

public interface Scalar extends Entity{
	boolean isNull();
	void setNull();
	Number getNumber() throws Exception;
	Temporal getTemporal() throws Exception;
	int hashBucket(int buckets);
	String getJsonString();
	int getScale();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy