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

com.xxdb.data.EntityFactory 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.io.IOException;

import com.xxdb.io.ExtendedDataInput;

public interface EntityFactory {
	Entity createEntity(Entity.DATA_FORM form, Entity.DATA_TYPE type, ExtendedDataInput in)  throws IOException;
	Matrix createMatrixWithDefaultValue(Entity.DATA_TYPE type, int rows, int columns);
	Vector createVectorWithDefaultValue(Entity.DATA_TYPE type, int size);
	Vector createPairWithDefaultValue(Entity.DATA_TYPE type);
	Scalar createScalarWithDefaultValue(Entity.DATA_TYPE type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy