com.vesoft.nebula.driver.graph.scan.TableRow Maven / Gradle / Ivy
The newest version!
package com.vesoft.nebula.driver.graph.scan;
import com.vesoft.nebula.driver.graph.data.ValueWrapper;
import java.util.List;
public class TableRow {
private final List values;
public TableRow(List values) {
this.values = values;
}
/**
* number of elements in TableRow
*/
public int size() {
return values.size();
}
/**
* check whether the value at position i is null
*/
public boolean isNullAt(int i) {
return values.get(i) == null;
}
public List getValues() {
return values;
}
}