com.xxdb.data.Dictionary 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;
/*
* Interface for dictionary object
*/
public interface Dictionary extends Entity{
DATA_TYPE getKeyDataType();
Entity get(Scalar key);
boolean put(Scalar key, Entity value);
}