public static enum OrcFileWriterConfig.StreamLayoutType extends Enum<OrcFileWriterConfig.StreamLayoutType>
| Enum Constant and Description |
|---|
BY_COLUMN_SIZE |
BY_STREAM_SIZE |
| Modifier and Type | Method and Description |
|---|---|
static OrcFileWriterConfig.StreamLayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrcFileWriterConfig.StreamLayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrcFileWriterConfig.StreamLayoutType BY_STREAM_SIZE
public static final OrcFileWriterConfig.StreamLayoutType BY_COLUMN_SIZE
public static OrcFileWriterConfig.StreamLayoutType[] values()
for (OrcFileWriterConfig.StreamLayoutType c : OrcFileWriterConfig.StreamLayoutType.values()) System.out.println(c);
public static OrcFileWriterConfig.StreamLayoutType 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 © 2012–2023. All rights reserved.