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

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

Go to download

The messaging and data conversion protocol between Java and DolphinDB server

There is a newer version: 1.0.27
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy