com.scudata.dw.compress.NullColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
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