public enum JdbcStatementType extends Enum<JdbcStatementType>
| Enum Constant and Description |
|---|
ANY_STATEMENT_TYPE
Any statement type.
|
SELECT_STATEMENT_TYPE
Select statement type.
|
UPDATE_STMT_TYPE
DML / DDL statement type.
|
| Modifier and Type | Method and Description |
|---|---|
static JdbcStatementType |
fromOrdinal(int ord)
Efficiently gets enumerated value from its ordinal.
|
static JdbcStatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcStatementType ANY_STATEMENT_TYPE
public static final JdbcStatementType SELECT_STATEMENT_TYPE
public static final JdbcStatementType UPDATE_STMT_TYPE
public static JdbcStatementType[] values()
for (JdbcStatementType c : JdbcStatementType.values()) System.out.println(c);
public static JdbcStatementType 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 static JdbcStatementType fromOrdinal(int ord)
ord - Ordinal value.null if ordinal out of range.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.11.0 Release Date : September 11 2021