Package tech.tablesaw.columns.strings
Class StringColumnType
- java.lang.Object
-
- tech.tablesaw.columns.AbstractColumnType
-
- tech.tablesaw.columns.strings.StringColumnType
-
- All Implemented Interfaces:
ColumnType
public class StringColumnType extends AbstractColumnType
-
-
Field Summary
Fields Modifier and Type Field Description static intBYTE_SIZEstatic StringParserDEFAULT_PARSER-
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 StringColumncreate(String name)Returns a column of this type with the given nameStringParsercustomParser(ReadOptions options)TODO: Research this method to provide a good commentstatic StringColumnTypeinstance()static StringmissingValueIndicator()static booleanvalueIsMissing(String string)-
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
-
BYTE_SIZE
public static final int BYTE_SIZE
- See Also:
- Constant Field Values
-
DEFAULT_PARSER
public static final StringParser DEFAULT_PARSER
-
-
Method Detail
-
instance
public static StringColumnType instance()
-
valueIsMissing
public static boolean valueIsMissing(String string)
-
create
public StringColumn create(String name)
Description copied from interface:ColumnTypeReturns a column of this type with the given name
-
customParser
public StringParser customParser(ReadOptions options)
Description copied from interface:ColumnTypeTODO: Research this method to provide a good comment
-
missingValueIndicator
public static String missingValueIndicator()
-
-