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

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

There is a newer version: 3.00.2.2
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, boolean exteneded)  throws IOException;
	Matrix createMatrixWithDefaultValue(Entity.DATA_TYPE type, int rows, int columns);
	Vector createVectorWithDefaultValue(Entity.DATA_TYPE type, int size, int extra);
	Vector createPairWithDefaultValue(Entity.DATA_TYPE type);
	Scalar createScalarWithDefaultValue(Entity.DATA_TYPE type);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy