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

com.xxdb.data.Vector 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;
/**
 * 
 * Interface for DolphinDB data form: ARRAY, BIGARRAY
 *
 */

public interface Vector extends Entity{
	final int DISPLAY_ROWS = 10;
	
	boolean isNull(int index);
	void setNull(int index);
	Scalar get(int index);
	void set(int index, Scalar value) throws Exception;
	Class getElementClass();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy