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