Package io.vertx.mutiny.jdbcclient
Class SqlOutParam
java.lang.Object
io.vertx.mutiny.jdbcclient.SqlOutParam
- All Implemented Interfaces:
MutinyDelegate
Tag if a parameter is of type OUT or INOUT.
By default parameters are of type IN as they are provided by the user to the RDBMs engine. There are however cases
where these must be tagged as OUT/INOUT when dealing with stored procedures/functions or complex statements.
This interface allows marking the type of the param as required by the JDBC API.
NOTE: This class has been automatically generated from the
original
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSqlOutParam
(io.vertx.jdbcclient.SqlOutParam delegate) SqlOutParam
(Object delegate) -
Method Summary
Modifier and TypeMethodDescriptionboolean
io.vertx.jdbcclient.SqlOutParam
int
hashCode()
boolean
in()
static SqlOutParam
static SqlOutParam
static SqlOutParam
static SqlOutParam
newInstance
(io.vertx.jdbcclient.SqlOutParam arg) static SqlOutParam
OUT
(int out) static SqlOutParam
static SqlOutParam
toString()
int
type()
value()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
SqlOutParam
public SqlOutParam(io.vertx.jdbcclient.SqlOutParam delegate) -
SqlOutParam
-
-
Method Details
-
getDelegate
public io.vertx.jdbcclient.SqlOutParam getDelegate()- Specified by:
getDelegate
in interfaceMutinyDelegate
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
OUT
- Parameters:
out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
OUT
- Parameters:
out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
OUT
- Parameters:
out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
- Parameters:
in
- the value to be passed as input.out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
- Parameters:
in
- the value to be passed as input.out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
- Parameters:
in
- the value to be passed as input.out
- the kind of the type according to JDBC types.- Returns:
- new marker
-
in
public boolean in()- Returns:
- true if
INOUT
-
type
public int type()- Returns:
- type
-
value
- Returns:
- input
-
newInstance
-