Package tech.tablesaw.io.html
Class HtmlReadOptions.Builder
- java.lang.Object
-
- tech.tablesaw.io.html.HtmlReadOptions.Builder
-
- Enclosing class:
- HtmlReadOptions
public static class HtmlReadOptions.Builder extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Integer
tableIndex
-
Method Summary
-
-
-
Field Detail
-
tableIndex
protected Integer tableIndex
-
-
Constructor Detail
-
Builder
protected Builder(tech.tablesaw.io.Source source)
-
Builder
protected Builder(URL url) throws IOException
- Throws:
IOException
-
Builder
public Builder(File file)
-
Builder
protected Builder(Reader reader)
-
Builder
protected Builder(InputStream stream)
-
-
Method Detail
-
build
public HtmlReadOptions build()
-
header
public HtmlReadOptions.Builder header(boolean header)
-
tableName
public HtmlReadOptions.Builder tableName(String tableName)
-
sample
public HtmlReadOptions.Builder sample(boolean sample)
-
dateFormat
public HtmlReadOptions.Builder dateFormat(DateTimeFormatter dateFormat)
-
timeFormat
public HtmlReadOptions.Builder timeFormat(DateTimeFormatter timeFormat)
-
dateTimeFormat
public HtmlReadOptions.Builder dateTimeFormat(DateTimeFormatter dateTimeFormat)
-
locale
public HtmlReadOptions.Builder locale(Locale locale)
-
missingValueIndicator
public HtmlReadOptions.Builder missingValueIndicator(String... missingValueIndicators)
-
minimizeColumnSizes
public HtmlReadOptions.Builder minimizeColumnSizes()
-
tableIndex
public HtmlReadOptions.Builder tableIndex(int tableIndex)
-
columnTypes
public HtmlReadOptions.Builder columnTypes(tech.tablesaw.api.ColumnType[] columnTypes)
-
columnTypes
public HtmlReadOptions.Builder columnTypes(Function<String,tech.tablesaw.api.ColumnType> columnTypeFunction)
-
columnTypesPartial
public HtmlReadOptions.Builder columnTypesPartial(Function<String,Optional<tech.tablesaw.api.ColumnType>> columnTypeFunction)
-
columnTypesPartial
public HtmlReadOptions.Builder columnTypesPartial(Map<String,tech.tablesaw.api.ColumnType> columnTypeByName)
-
-