Package tech.tablesaw.columns.numbers
Class IntColumnType
- java.lang.Object
-
- tech.tablesaw.columns.AbstractColumnType
-
- tech.tablesaw.columns.numbers.IntColumnType
-
- All Implemented Interfaces:
ColumnType
public class IntColumnType extends AbstractColumnType
TheColumnTypeforIntColumn
-
-
Field Summary
Fields Modifier and Type Field Description static IntParserDEFAULT_PARSERThe default parser for IntColumn-
Fields inherited from interface tech.tablesaw.api.ColumnType
BOOLEAN, DOUBLE, FLOAT, INSTANT, INTEGER, LOCAL_DATE, LOCAL_DATE_TIME, LOCAL_TIME, LONG, SHORT, SKIP, STRING, values
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IntColumncreate(String name)Returns a column of this type with the given nameIntParsercustomParser(ReadOptions options)TODO: Research this method to provide a good commentstatic IntColumnTypeinstance()Returns the singleton instance of IntColumnTypestatic intmissingValueIndicator()Returns the missing value indicator for this column type NOTE:static booleanvalueIsMissing(int value)Returns true if the given value is the missing value indicator for this column type-
Methods inherited from class tech.tablesaw.columns.AbstractColumnType
byteSize, equals, getPrinterFriendlyName, hashCode, name, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface tech.tablesaw.api.ColumnType
compare
-
-
-
-
Field Detail
-
DEFAULT_PARSER
public static final IntParser DEFAULT_PARSER
The default parser for IntColumn
-
-
Method Detail
-
instance
public static IntColumnType instance()
Returns the singleton instance of IntColumnType
-
customParser
public IntParser customParser(ReadOptions options)
TODO: Research this method to provide a good comment
-
valueIsMissing
public static boolean valueIsMissing(int value)
Returns true if the given value is the missing value indicator for this column type
-
missingValueIndicator
public static int missingValueIndicator()
Returns the missing value indicator for this column type NOTE:
-
-