com.xxdb.data.Scalar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
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;
}