Class RawContentStyle
- java.lang.Object
-
- org.apache.flink.table.utils.print.RawContentStyle
-
- All Implemented Interfaces:
PrintStyle
@Internal public final class RawContentStyle extends Object implements PrintStyle
Print only the result content as raw form. column delimiter is ",", row delimiter is "\n".
-
-
Field Summary
-
Fields inherited from interface org.apache.flink.table.utils.print.PrintStyle
DEFAULT_MAX_COLUMN_WIDTH, NULL_VALUE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
print(Iterator<RowData> it, PrintWriter printWriter)
Displays the result.
-
-
-
Method Detail
-
print
public void print(Iterator<RowData> it, PrintWriter printWriter)
Description copied from interface:PrintStyle
Displays the result.- Specified by:
print
in interfacePrintStyle
- Parameters:
it
- The iterator for the data to printprintWriter
- The writer to write to
-
-