Package jisa.results
Class BooleanColumn
- java.lang.Object
-
- jisa.results.Column<java.lang.Boolean>
-
- jisa.results.BooleanColumn
-
public class BooleanColumn extends Column<java.lang.Boolean>
-
-
Constructor Summary
Constructors Constructor Description BooleanColumn(java.lang.String name)
BooleanColumn(java.lang.String name, java.lang.String units)
BooleanColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Boolean> evaluable)
BooleanColumn(java.lang.String name, RowEvaluable<java.lang.Boolean> evaluable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Boolean
parse(java.lang.String string)
Parses a string representation of a value of this column's data type into its true representation.java.lang.String
stringify(java.lang.Object value)
Converts a value of this column's data type into a String, for outputting.-
Methods inherited from class jisa.results.Column
byExample, calculate, getMatcherName, getMatcherTitle, getName, getTitle, getType, getUnits, hasUnits, isCalculated, of, of, ofBooleans, ofBooleans, ofBooleans, ofBooleans, ofDecimals, ofDecimals, ofDecimals, ofDecimals, ofDoubles, ofDoubles, ofDoubles, ofDoubles, ofIntegers, ofIntegers, ofIntegers, ofIntegers, ofLongs, ofLongs, ofLongs, ofLongs, ofStrings, ofStrings, ofStrings, ofStrings, ofText, ofText, ofText, ofText, to
-
-
-
-
Constructor Detail
-
BooleanColumn
public BooleanColumn(java.lang.String name, java.lang.String units)
-
BooleanColumn
public BooleanColumn(java.lang.String name)
-
BooleanColumn
public BooleanColumn(java.lang.String name, RowEvaluable<java.lang.Boolean> evaluable)
-
BooleanColumn
public BooleanColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Boolean> evaluable)
-
-
Method Detail
-
stringify
public java.lang.String stringify(java.lang.Object value)
Description copied from class:Column
Converts a value of this column's data type into a String, for outputting.
-
parse
public java.lang.Boolean parse(java.lang.String string)
Description copied from class:Column
Parses a string representation of a value of this column's data type into its true representation.
-
-