Class SqlOutParam
java.lang.Object
io.vertx.rxjava3.jdbcclient.SqlOutParam
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
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 RX-ified interface using Vert.x codegen.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()booleanin()Is this markerIN?static SqlOutParamFactory for a INOUT parameter of typeout.static SqlOutParamFactory for a INOUT parameter of typeout.static SqlOutParamFactory for a INOUT parameter of typeout.static SqlOutParamnewInstance(SqlOutParam arg) static SqlOutParamOUT(int out) Factory for a OUT parameter of typeout.static SqlOutParamFactory for a OUT parameter of typeout.static SqlOutParamFactory for a OUT parameter of typeout.toString()inttype()Get the output typevalue()Get the input value
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
SqlOutParam
-
SqlOutParam
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate
-
OUT
Factory for a OUT parameter of typeout.- Parameters:
out- the kind of the type according to JDBC types.- Returns:
- new marker
-
OUT
Factory for a OUT parameter of typeout.- Parameters:
out- the kind of the type according to JDBC types.- Returns:
- new marker
-
OUT
Factory for a OUT parameter of typeout.- Parameters:
out- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
Factory for a INOUT parameter of typeout.- Parameters:
in- the value to be passed as input.out- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
Factory for a INOUT parameter of typeout.- Parameters:
in- the value to be passed as input.out- the kind of the type according to JDBC types.- Returns:
- new marker
-
INOUT
Factory for a INOUT parameter of typeout.- 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()Is this markerIN?- Returns:
- true if
INOUT
-
type
public int type()Get the output type- Returns:
- type
-
value
-
newInstance
-