public static enum TableFunction.ParameterType extends Enum<TableFunction.ParameterType>
| Enum Constant and Description |
|---|
BIGINT |
BOOLEAN |
VARCHAR |
VARCHAR_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
String |
sqlName() |
static TableFunction.ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableFunction.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableFunction.ParameterType VARCHAR
public static final TableFunction.ParameterType BIGINT
public static final TableFunction.ParameterType BOOLEAN
public static final TableFunction.ParameterType VARCHAR_ARRAY
public static TableFunction.ParameterType[] values()
for (TableFunction.ParameterType c : TableFunction.ParameterType.values()) System.out.println(c);
public static TableFunction.ParameterType 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 sqlName()
Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.