Package org.rcsb.cif.model
Interface FloatColumn
- All Superinterfaces:
Column<double[]>
- All Known Implementing Classes:
BinaryFloatColumn,DelegatingFloatColumn
public interface FloatColumn extends Column<double[]>
A column that provides float data.
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description doubleget(int row)Type-safe access to the native type of data stored in this column.static doubleparseFloat(String text)This is how all FloatColumns parse their data.default DoubleStreamvalues()A DoubleStream of all registered values.Methods inherited from interface org.rcsb.cif.model.Column
getArray, getColumnName, getRowCount, getStringData, getValueKind, isDefined, stringData, valueKinds
-
Method Details
-
get
double get(int row)Type-safe access to the native type of data stored in this column.- Parameters:
row- the index to retrieve- Returns:
- an double value
-
values
A DoubleStream of all registered values.- Returns:
- doubles
-
parseFloat
This is how all FloatColumns parse their data.- Parameters:
text- the raw data- Returns:
- a double
-