public static enum FBEscapedParser.EscapeParserMode extends java.lang.Enum<FBEscapedParser.EscapeParserMode>
Enum Constant and Description |
---|
USE_BUILT_IN
Use built-in functions if available.
|
USE_STANDARD_UDF
Attempt to use UDF if there is no explicit function template defined.
|
Modifier and Type | Method and Description |
---|---|
static FBEscapedParser.EscapeParserMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FBEscapedParser.EscapeParserMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FBEscapedParser.EscapeParserMode USE_BUILT_IN
This may still result in a UDF function beign used if the UDF matches naming and arguments of the function (or function template)
public static final FBEscapedParser.EscapeParserMode USE_STANDARD_UDF
This may still result in a built-in function being used if there is an explicit function template, and/or if there is no UDF with the name, but there is a built-in with the same name and parameter order.
public static FBEscapedParser.EscapeParserMode[] values()
for (FBEscapedParser.EscapeParserMode c : FBEscapedParser.EscapeParserMode.values()) System.out.println(c);
public static FBEscapedParser.EscapeParserMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2001-2021 Jaybird (Firebird JDBC/JCA) team. All rights reserved.