Enum Class JdbcSqlScanHandler.RegionKind
java.lang.Object
java.lang.Enum<JdbcSqlScanHandler.RegionKind>
io.helidon.data.jdbc.lexical.JdbcSqlScanHandler.RegionKind
- All Implemented Interfaces:
Serializable, Comparable<JdbcSqlScanHandler.RegionKind>, Constable
- Enclosing interface:
JdbcSqlScanHandler
Kinds of SQL regions whose contents do not contain active bind markers.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn Oracle alternative-quoted string.A backtick-quoted identifier.A block comment.A bracket-quoted identifier.A PostgreSQL dollar-quoted string.A double-quoted identifier.A line comment.A single-quoted string. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static JdbcSqlScanHandler.RegionKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SINGLE_QUOTE
A single-quoted string. -
DOUBLE_QUOTE
A double-quoted identifier. -
BACKTICK_IDENTIFIER
A backtick-quoted identifier. -
BRACKET_IDENTIFIER
A bracket-quoted identifier. -
LINE_COMMENT
A line comment. -
BLOCK_COMMENT
A block comment. -
DOLLAR_QUOTE
A PostgreSQL dollar-quoted string. -
ALTERNATIVE_QUOTE
An Oracle alternative-quoted string.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-