public enum SupportedGraphqlFunction extends Enum<SupportedGraphqlFunction>
| Enum Constant and Description |
|---|
BIGINT_FUNCTION |
DECIMAL_FUNCTION |
DOUBLE_FUNCTION |
FLOAT_FUNCTION |
INT_FUNCTION |
SMALLINT_FUNCTION |
TINYINT_FUNCTION |
VARINT_FUNCTION |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
BiFunction<Row,String,Object> |
getRowValueExtractor() |
static SupportedGraphqlFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Optional<SupportedGraphqlFunction> |
valueOfIgnoreCase(String functionName) |
static SupportedGraphqlFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedGraphqlFunction INT_FUNCTION
public static final SupportedGraphqlFunction DOUBLE_FUNCTION
public static final SupportedGraphqlFunction BIGINT_FUNCTION
public static final SupportedGraphqlFunction DECIMAL_FUNCTION
public static final SupportedGraphqlFunction VARINT_FUNCTION
public static final SupportedGraphqlFunction FLOAT_FUNCTION
public static final SupportedGraphqlFunction SMALLINT_FUNCTION
public static final SupportedGraphqlFunction TINYINT_FUNCTION
public static SupportedGraphqlFunction[] values()
for (SupportedGraphqlFunction c : SupportedGraphqlFunction.values()) System.out.println(c);
public static SupportedGraphqlFunction 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 BiFunction<Row,String,Object> getRowValueExtractor()
public static Optional<SupportedGraphqlFunction> valueOfIgnoreCase(String functionName)
Copyright © 2023. All rights reserved.