Row

package

Default

Methods

__construct

__construct() 

Add a boolean value at the end of the tuple.

addBoolean( $arg0) : $this

Arguments

$arg0

boolean

Response

$this

a reference to this, so the API can be used fluently

Add a buffer value at the end of the tuple.

addBuffer( $arg0) : $this

Arguments

$arg0

Buffer

Response

$this

a reference to this, so the API can be used fluently

Add a double value at the end of the tuple.

addDouble( $arg0) : $this

Arguments

$arg0

float

Response

$this

a reference to this, so the API can be used fluently

Add a float value at the end of the tuple.

addFloat( $arg0) : $this

Arguments

$arg0

float

Response

$this

a reference to this, so the API can be used fluently

Add an integer value at the end of the tuple.

addInteger( $arg0) : $this

Arguments

$arg0

integer

Response

$this

a reference to this, so the API can be used fluently

Add a long value at the end of the tuple.

addLong( $arg0) : $this

Arguments

$arg0

integer

Response

$this

a reference to this, so the API can be used fluently

Add a short value at the end of the tuple.

addShort( $arg0) : $this

Arguments

$arg0

integer

Response

$this

a reference to this, so the API can be used fluently

Add a string value at the end of the tuple.

addString( $arg0) : $this

Arguments

$arg0

string

Response

$this

a reference to this, so the API can be used fluently

Add an object value at the end of the tuple.

addValue( $arg0) : $this

Arguments

$arg0

mixed

Response

$this

a reference to this, so the API can be used fluently

clear

clear() : void

get

get( $arg0,  $arg1) : mixed

Arguments

$arg0

string

$arg1

integer

Response

mixed

Get a boolean value at <code>pos</code>.

getBoolean( $arg0) : boolean

param $pos [integer] the position getBoolean($pos)

Get a boolean value at pos.

param $name [string] the column getBoolean($name)

Arguments

$arg0

string | integer

Response

boolean

the value or {@code null}

Get a buffer value at <code>pos</code>.

getBuffer( $arg0) : \io\vertx\jphp\core\buffer\Buffer

param $pos [integer] the position getBuffer($pos)

Get a buffer value at pos.

param $name [string] the column getBuffer($name)

Arguments

$arg0

string | integer

Response

\io\vertx\jphp\core\buffer\Buffer

the value or {@code null}

Get a column position for the given column <code>name</code>.

getColumnIndex( $arg0) : integer

Arguments

$arg0

string

Response

integer

the column name or {@code -1} if not found

Get a column name at <code>pos</code>.

getColumnName( $arg0) : string

Arguments

$arg0

integer

Response

string

the column name or {@code null}

Get a double value at <code>pos</code>.

getDouble( $arg0) : float

param $pos [integer] the position getDouble($pos)

Get a double value at pos.

param $name [string] the column getDouble($name)

Arguments

$arg0

string | integer

Response

float

the value or {@code null}

Get a float value at <code>pos</code>.

getFloat( $arg0) : float

param $pos [integer] the position getFloat($pos)

Get a float value at pos.

param $name [string] the column getFloat($name)

Arguments

$arg0

string | integer

Response

float

the value or {@code null}

Get an integer value at <code>pos</code>.

getInteger( $arg0) : integer

param $pos [integer] the position getInteger($pos)

Get an integer value at pos.

param $name [string] the column getInteger($name)

Arguments

$arg0

string | integer

Response

integer

the value or {@code null}

Get a long value at <code>pos</code>.

getLong( $arg0) : integer

param $pos [integer] the position getLong($pos)

Get a long value at pos.

param $name [string] the column getLong($name)

Arguments

$arg0

string | integer

Response

integer

the value or {@code null}

Get a short value at <code>pos</code>.

getShort( $arg0) : integer

param $pos [integer] the position getShort($pos)

Get a short value at pos.

param $name [string] the column getShort($name)

Arguments

$arg0

string | integer

Response

integer

the value or {@code null}

Get a string value at <code>pos</code>.

getString( $arg0) : string

param $pos [integer] the position getString($pos)

Get a string value at pos.

param $name [string] the column getString($name)

Arguments

$arg0

string | integer

Response

string

the value or {@code null}

Get an object value at <code>pos</code>.

getValue( $arg0) : mixed

param $pos [integer] the position getValue($pos)

Get an object value at pos.

param $name [string] the column getValue($name)

Arguments

$arg0

string | integer

Response

mixed

the value or {@code null}

size

size() : integer

Response

integer

the tuple size

Constants

The JSON null literal value.

JSON_NULL


It is used to distinguish a JSON null literal value from the Java null value. This is only used when the database supports JSON types.

var

php文件只是为了写代码方便,常量的实际值请参考原java文件