Uses of Class
io.vertx.sqlclient.data.Numeric
-
Packages that use Numeric Package Description io.vertx.reactivex.sqlclient io.vertx.rxjava3.sqlclient io.vertx.sqlclient io.vertx.sqlclient.data -
-
Uses of Numeric in io.vertx.reactivex.sqlclient
Methods in io.vertx.reactivex.sqlclient that return Numeric Modifier and Type Method Description Numeric[]
Row. getArrayOfNumerics(String column)
Get an array of value for the givencolumn
.Numeric[]
Tuple. getArrayOfNumerics(int pos)
Get an array of value atpos
.Numeric
Row. getNumeric(String column)
Get value for the givencolumn
.Numeric
Tuple. getNumeric(int pos)
Get value atpos
. -
Uses of Numeric in io.vertx.rxjava3.sqlclient
Methods in io.vertx.rxjava3.sqlclient that return Numeric Modifier and Type Method Description Numeric[]
Row. getArrayOfNumerics(String column)
Get an array of value for the givencolumn
.Numeric[]
Tuple. getArrayOfNumerics(int pos)
Get an array of value atpos
.Numeric
Row. getNumeric(String column)
Get value for the givencolumn
.Numeric
Tuple. getNumeric(int pos)
Get value atpos
. -
Uses of Numeric in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return Numeric Modifier and Type Method Description default Numeric[]
Row. getArrayOfNumerics(String column)
Get an array ofNumeric
value for the givencolumn
.default Numeric[]
Tuple. getArrayOfNumerics(int pos)
Get an array ofNumeric
value atpos
.default Numeric
Row. getNumeric(String column)
GetNumeric
value for the givencolumn
.default Numeric
Tuple. getNumeric(int pos)
GetNumeric
value atpos
. -
Uses of Numeric in io.vertx.sqlclient.data
Fields in io.vertx.sqlclient.data declared as Numeric Modifier and Type Field Description static Numeric
Numeric. NaN
Constant for theNaN
value.Methods in io.vertx.sqlclient.data that return Numeric Modifier and Type Method Description static Numeric
Numeric. create(Number number)
Return aNumeric
instance for the givennumber
.static Numeric
Numeric. parse(String s)
Parse and return aNumeric
instance for the givens
.
-