Package jisa.results
Class LongColumn
- java.lang.Object
-
- jisa.results.Column<java.lang.Long>
-
- jisa.results.LongColumn
-
public class LongColumn extends Column<java.lang.Long>
-
-
Constructor Summary
Constructors Constructor Description LongColumn(java.lang.String name)
LongColumn(java.lang.String name, java.lang.String units)
LongColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Long> evaluable)
LongColumn(java.lang.String name, RowEvaluable<java.lang.Long> evaluable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Long
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
-
LongColumn
public LongColumn(java.lang.String name, java.lang.String units)
-
LongColumn
public LongColumn(java.lang.String name)
-
LongColumn
public LongColumn(java.lang.String name, RowEvaluable<java.lang.Long> evaluable)
-
LongColumn
public LongColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Long> 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.Long 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.
-
-