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

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

There is a newer version: 3.00.2.2
Show newest version
package com.xxdb.data;

/**
 * 
 * Interface for table object
 *
 */

public interface Table extends Entity{
	Vector getColumn(int index);
	Vector getColumn(String name);
	String getColumnName(int index);
	Table getSubTable(int[] indices);
	void addColumn(String colName, Vector col);
	void replaceColumn(String colName, Vector col);
	void setColumnCompressTypes(int[] colCompresses);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy