public enum HoodieFileFormat extends Enum<HoodieFileFormat>
| Enum Constant and Description |
|---|
HFILE |
HOODIE_LOG |
ORC |
PARQUET |
| Modifier and Type | Field and Description |
|---|---|
static Set<String> |
BASE_FILE_EXTENSIONS |
| Modifier and Type | Method and Description |
|---|---|
String |
getFileExtension() |
static HoodieFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HoodieFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HoodieFileFormat PARQUET
public static final HoodieFileFormat HOODIE_LOG
public static final HoodieFileFormat HFILE
public static final HoodieFileFormat ORC
public static HoodieFileFormat[] values()
for (HoodieFileFormat c : HoodieFileFormat.values()) System.out.println(c);
public static HoodieFileFormat 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 nullpublic String getFileExtension()
Copyright © 2022 The Apache Software Foundation. All rights reserved.