public enum HoodieTableType extends Enum<HoodieTableType>
| Enum Constant and Description |
|---|
COPY_ON_WRITE |
MERGE_ON_READ |
| Modifier and Type | Method and Description |
|---|---|
static HoodieTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HoodieTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HoodieTableType COPY_ON_WRITE
public static final HoodieTableType MERGE_ON_READ
public static HoodieTableType[] values()
for (HoodieTableType c : HoodieTableType.values()) System.out.println(c);
public static HoodieTableType 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.