public enum HoodieFailedWritesCleaningPolicy extends Enum<HoodieFailedWritesCleaningPolicy>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEager() |
boolean |
isLazy() |
boolean |
isNever() |
static HoodieFailedWritesCleaningPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HoodieFailedWritesCleaningPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HoodieFailedWritesCleaningPolicy EAGER
public static final HoodieFailedWritesCleaningPolicy LAZY
public static final HoodieFailedWritesCleaningPolicy NEVER
public static HoodieFailedWritesCleaningPolicy[] values()
for (HoodieFailedWritesCleaningPolicy c : HoodieFailedWritesCleaningPolicy.values()) System.out.println(c);
public static HoodieFailedWritesCleaningPolicy 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 boolean isEager()
public boolean isLazy()
public boolean isNever()
Copyright © 2022 The Apache Software Foundation. All rights reserved.