public static enum DslJdbcSampler.JdbcParamMode extends Enum<DslJdbcSampler.JdbcParamMode>
| Enum Constant and Description |
|---|
IN
The parameter is only used by database query to read a value.
|
INOUT
The parameter value is used to read a value by the query and is altered containing a
resulting output.
|
OUT
The parameter value is altered by the database query, and used as a resulting output of the
query.
|
| Modifier and Type | Method and Description |
|---|---|
static DslJdbcSampler.JdbcParamMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslJdbcSampler.JdbcParamMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslJdbcSampler.JdbcParamMode IN
This is the default mode of parameters when none is specified.
public static final DslJdbcSampler.JdbcParamMode OUT
public static final DslJdbcSampler.JdbcParamMode INOUT
public static DslJdbcSampler.JdbcParamMode[] values()
for (DslJdbcSampler.JdbcParamMode c : DslJdbcSampler.JdbcParamMode.values()) System.out.println(c);
public static DslJdbcSampler.JdbcParamMode 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 © 2022. All rights reserved.