public enum SqlFunctionVisibility extends Enum<SqlFunctionVisibility>
| Enum Constant and Description |
|---|
EXPERIMENTAL
Marked to indicate that the function is experimental and may change in the future.
|
HIDDEN |
PUBLIC |
| Modifier and Type | Method and Description |
|---|---|
static SqlFunctionVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlFunctionVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlFunctionVisibility PUBLIC
public static final SqlFunctionVisibility HIDDEN
public static final SqlFunctionVisibility EXPERIMENTAL
session property,
system propertypublic static SqlFunctionVisibility[] values()
for (SqlFunctionVisibility c : SqlFunctionVisibility.values()) System.out.println(c);
public static SqlFunctionVisibility 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 © 2012–2022. All rights reserved.