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

com.scudata.dw.compress.NullColumn Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.dw.compress;

import java.io.IOException;

import com.scudata.common.RQException;
import com.scudata.dw.BufferReader;

public class NullColumn extends Column {

	public void addData(Object data) {
		throw new RQException("never run to here!");

	}
	
	// ȡ??row?е?????
	public Object getData(int row) {
		return null;
	}
	
	public Column clone() {
		return new NullColumn();
	}

	public void appendData(BufferReader br) throws IOException {
		throw new RQException("never run to here!");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy