public enum SqlFunctionCategory extends Enum<SqlFunctionCategory>
| Enum Constant and Description |
|---|
MATCH_RECOGNIZE |
NUMERIC |
STRING |
SYSTEM |
TIMEDATE |
USER_DEFINED_CONSTRUCTOR |
USER_DEFINED_FUNCTION |
USER_DEFINED_PROCEDURE |
USER_DEFINED_SPECIFIC_FUNCTION |
USER_DEFINED_TABLE_FUNCTION |
USER_DEFINED_TABLE_SPECIFIC_FUNCTION |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFunction() |
boolean |
isSpecific() |
boolean |
isTableFunction() |
boolean |
isUserDefined() |
boolean |
isUserDefinedNotSpecificFunction() |
static SqlFunctionCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlFunctionCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlFunctionCategory STRING
public static final SqlFunctionCategory NUMERIC
public static final SqlFunctionCategory TIMEDATE
public static final SqlFunctionCategory SYSTEM
public static final SqlFunctionCategory USER_DEFINED_FUNCTION
public static final SqlFunctionCategory USER_DEFINED_PROCEDURE
public static final SqlFunctionCategory USER_DEFINED_CONSTRUCTOR
public static final SqlFunctionCategory USER_DEFINED_SPECIFIC_FUNCTION
public static final SqlFunctionCategory USER_DEFINED_TABLE_FUNCTION
public static final SqlFunctionCategory USER_DEFINED_TABLE_SPECIFIC_FUNCTION
public static final SqlFunctionCategory MATCH_RECOGNIZE
public static SqlFunctionCategory[] values()
for (SqlFunctionCategory c : SqlFunctionCategory.values()) System.out.println(c);
public static SqlFunctionCategory 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 boolean isUserDefined()
public boolean isTableFunction()
public boolean isFunction()
public boolean isSpecific()
public boolean isUserDefinedNotSpecificFunction()
Copyright © 2012-2022 Apache Software Foundation. All Rights Reserved.