public static enum JdbcQuerySenderBase.QueryType extends Enum<JdbcQuerySenderBase.QueryType>
Enum Constant and Description |
---|
OTHER
For queries that return no data
|
PACKAGE
To execute Oracle PL/SQL package
|
SELECT
For queries that return data
|
UPDATEBLOB
For queries that update a BLOB
|
UPDATECLOB
For queries that update a CLOB
|
Modifier and Type | Method and Description |
---|---|
static JdbcQuerySenderBase.QueryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcQuerySenderBase.QueryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcQuerySenderBase.QueryType SELECT
public static final JdbcQuerySenderBase.QueryType UPDATEBLOB
public static final JdbcQuerySenderBase.QueryType UPDATECLOB
public static final JdbcQuerySenderBase.QueryType PACKAGE
public static final JdbcQuerySenderBase.QueryType OTHER
public static JdbcQuerySenderBase.QueryType[] values()
for (JdbcQuerySenderBase.QueryType c : JdbcQuerySenderBase.QueryType.values()) System.out.println(c);
public static JdbcQuerySenderBase.QueryType 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 © 2023 Frank!Framework. All rights reserved.