public static enum ParquetOutputFormat.JobSummaryLevel extends Enum<ParquetOutputFormat.JobSummaryLevel>
| Enum Constant and Description |
|---|
ALL
Write both summary file with row group info and summary file without
(both _metadata and _common_metadata)
|
COMMON_ONLY
Write only the summary file without the row group info
(_common_metadata only)
|
NONE
Write no summary files
|
| Modifier and Type | Method and Description |
|---|---|
static ParquetOutputFormat.JobSummaryLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParquetOutputFormat.JobSummaryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParquetOutputFormat.JobSummaryLevel NONE
public static final ParquetOutputFormat.JobSummaryLevel ALL
public static final ParquetOutputFormat.JobSummaryLevel COMMON_ONLY
public static ParquetOutputFormat.JobSummaryLevel[] values()
for (ParquetOutputFormat.JobSummaryLevel c : ParquetOutputFormat.JobSummaryLevel.values()) System.out.println(c);
public static ParquetOutputFormat.JobSummaryLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 The Apache Software Foundation. All rights reserved.