static enum SqlFunctionCategory.Property extends Enum<SqlFunctionCategory.Property>
| Enum Constant and Description |
|---|
FUNCTION |
SPECIFIC |
TABLE_FUNCTION |
USER_DEFINED |
| Modifier and Type | Method and Description |
|---|---|
static SqlFunctionCategory.Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlFunctionCategory.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlFunctionCategory.Property USER_DEFINED
public static final SqlFunctionCategory.Property TABLE_FUNCTION
public static final SqlFunctionCategory.Property SPECIFIC
public static final SqlFunctionCategory.Property FUNCTION
public static SqlFunctionCategory.Property[] values()
for (SqlFunctionCategory.Property c : SqlFunctionCategory.Property.values()) System.out.println(c);
public static SqlFunctionCategory.Property 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–2018 The Apache Software Foundation. All rights reserved.