Package com.macrofocus.molap.exporter
Interface DataFrameWriter
-
- All Known Implementing Classes:
AbstractDataFrameWriter
,DelimitedDataFrameWriter
,DelimitedStreamDataFrameWriter
,ExcelDataFrameWriter
,ExcelXDataFrameWriter
,GeoJSONDataFrameWriter
,JSONDataFrameWriter
public interface DataFrameWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
boolean
includeType()
void
nextColumn(boolean hasMore)
void
nextRow()
void
setTimeZone(java.util.TimeZone timeZone)
void
start()
void
writeCell(java.lang.Object value, DataFrame dataFrame, java.lang.Object rowKey, java.lang.Object columnKey)
void
writeColumnName(java.lang.String name, boolean hasMore)
void
writeType(java.lang.Class name, boolean hasMore)
-
-
-
Method Detail
-
start
void start() throws java.io.IOException
- Throws:
java.io.IOException
-
writeColumnName
void writeColumnName(java.lang.String name, boolean hasMore) throws java.io.IOException
- Throws:
java.io.IOException
-
includeType
boolean includeType()
-
writeType
void writeType(java.lang.Class name, boolean hasMore) throws java.io.IOException
- Throws:
java.io.IOException
-
writeCell
void writeCell(java.lang.Object value, DataFrame dataFrame, java.lang.Object rowKey, java.lang.Object columnKey) throws java.io.IOException
- Throws:
java.io.IOException
-
nextColumn
void nextColumn(boolean hasMore) throws java.io.IOException
- Throws:
java.io.IOException
-
nextRow
void nextRow() throws java.io.IOException
- Throws:
java.io.IOException
-
close
void close() throws java.io.IOException
- Throws:
java.io.IOException
-
setTimeZone
@GwtIncompatible void setTimeZone(java.util.TimeZone timeZone)
-
-