@Internal public enum StarRocksSinkSemantic extends Enum<StarRocksSinkSemantic>
| Enum Constant and Description |
|---|
AT_LEAST_ONCE |
EXACTLY_ONCE |
| Modifier and Type | Method and Description |
|---|---|
static StarRocksSinkSemantic |
fromName(String n) |
String |
getName() |
static StarRocksSinkSemantic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StarRocksSinkSemantic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StarRocksSinkSemantic EXACTLY_ONCE
public static final StarRocksSinkSemantic AT_LEAST_ONCE
public static StarRocksSinkSemantic[] values()
for (StarRocksSinkSemantic c : StarRocksSinkSemantic.values()) System.out.println(c);
public static StarRocksSinkSemantic 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 getName()
public static StarRocksSinkSemantic fromName(String n)
Copyright © 2023. All rights reserved.