com.github.housepower.jdbc.data.Column Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
package com.github.housepower.jdbc.data;
public class Column {
private final String name;
private final IDataType type;
private final Object[] rowsData;
public Column(String name, IDataType type, Object[] rowsData) {
this.name = name;
this.type = type;
this.rowsData = rowsData;
}
public String name() {
return this.name;
}
public IDataType type() {
return this.type;
}
public Object[] data() {
return rowsData;
}
public Object data(int rows) {
return rowsData[rows];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy