@PublicEvolving public enum FunctionLanguage extends Enum<FunctionLanguage>
CatalogFunction
.Modifier and Type | Method and Description |
---|---|
static FunctionLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionLanguage JAVA
public static final FunctionLanguage SCALA
public static final FunctionLanguage PYTHON
public static FunctionLanguage[] values()
for (FunctionLanguage c : FunctionLanguage.values()) System.out.println(c);
public static FunctionLanguage 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 © 2014–2024 The Apache Software Foundation. All rights reserved.