@EnumDescription(value="Time generator type, indicating the time generator class to use, that implements `org.apache.hudi.common.table.timeline.TimeGenerator`.") public enum TimeGeneratorType extends Enum<TimeGeneratorType>
TimeGenerator.| Enum Constant and Description |
|---|
WAIT_TO_ADJUST_SKEW |
| Modifier and Type | Method and Description |
|---|---|
static TimeGeneratorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeGeneratorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@EnumFieldDescription(value="A wait based time generator, holding a mutex lock with skew times to produce globally monotonically increasing timestamp") public static final TimeGeneratorType WAIT_TO_ADJUST_SKEW
public static TimeGeneratorType[] values()
for (TimeGeneratorType c : TimeGeneratorType.values()) System.out.println(c);
public static TimeGeneratorType 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.