Package jisa.results
Class IntColumn
- java.lang.Object
-
- jisa.results.Column<java.lang.Integer>
-
- jisa.results.IntColumn
-
public class IntColumn extends Column<java.lang.Integer>
-
-
Constructor Summary
Constructors Constructor Description IntColumn(java.lang.String name)IntColumn(java.lang.String name, java.lang.String units)IntColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Integer> evaluable)IntColumn(java.lang.String name, RowEvaluable<java.lang.Integer> evaluable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Integerparse(java.lang.String string)Parses a string representation of a value of this column's data type into its true representation.java.lang.Stringstringify(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
-
IntColumn
public IntColumn(java.lang.String name, java.lang.String units)
-
IntColumn
public IntColumn(java.lang.String name)
-
IntColumn
public IntColumn(java.lang.String name, RowEvaluable<java.lang.Integer> evaluable)
-
IntColumn
public IntColumn(java.lang.String name, java.lang.String units, RowEvaluable<java.lang.Integer> evaluable)
-
-
Method Detail
-
stringify
public java.lang.String stringify(java.lang.Object value)
Description copied from class:ColumnConverts a value of this column's data type into a String, for outputting.
-
parse
public java.lang.Integer parse(java.lang.String string)
Description copied from class:ColumnParses a string representation of a value of this column's data type into its true representation.
-
-