@EnumDescription(value="Determines how the files are organized within a table.") public static enum HoodieStorageLayout.LayoutType extends Enum<HoodieStorageLayout.LayoutType>
| Modifier and Type | Method and Description |
|---|---|
static HoodieStorageLayout.LayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HoodieStorageLayout.LayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@EnumFieldDescription(value="Each file group contains records of a certain set of keys, without particular grouping criteria.") public static final HoodieStorageLayout.LayoutType DEFAULT
@EnumFieldDescription(value="Each file group contains records of a set of keys which map to a certain range of hash values, so that using the hash function can easily identify the file group a record belongs to, based on the record key.") public static final HoodieStorageLayout.LayoutType BUCKET
public static HoodieStorageLayout.LayoutType[] values()
for (HoodieStorageLayout.LayoutType c : HoodieStorageLayout.LayoutType.values()) System.out.println(c);
public static HoodieStorageLayout.LayoutType 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 © 2024 The Apache Software Foundation. All rights reserved.