Skip to main content

Field

Definição do objeto Field para declarar a coluna retornada em uma consulta com Query.


getAlias


getAlias() : string

Description

Returns the alias of the column that will be returned in the query.

Return

( string )

The alias of the column.


getColumn


getColumn() : string

Description

Returns the name of the column that will be returned in the query.

Return

( string )

The name of the column.


getValue


getValue() : java.lang.Object

Return

( java.lang.Object )


setAlias


setAlias(column: string) : Field

Description

Defines the alias of the column that will be returned in the query.

Attributes
NAMETYPEDESCRIPTION
columnstringThe alias of the column
Return

( Field )

Current Field object.


setColumn


setColumn(column: string) : Field

Description

Defines the name of the column that will be returned in the query.

Attributes
NAMETYPEDESCRIPTION
columnstringThe name of the column
Return

( Field )

Current Field object.


setValue


setValue(value: java.lang.Object) : Field

Attributes
NAMETYPEDESCRIPTION
valuejava.lang.Object
Return

( Field )