Variables
Inherit from Literal
Primary key: oid: int
schema Variables extends Literal {
@primary oid: int,
expr: int,
value: string,
raw: string
}
Variables::getExpression
pub fn getExpression(self: Variables) -> Expr;
Variables::getExpr
/**
* @brief gets the expr of this element.
* @return int
*/
- Parameter
self
:Variables
- Return
int
pub fn getExpr(self: Variables) -> int;
Variables::getRaw
/**
* @brief gets the raw of this element.
* @return string
*/
- Parameter
self
:Variables
- Return
string
pub fn getRaw(self: Variables) -> string;
Variables::getBelongsFunction
pub fn getBelongsFunction(self: Variables) -> Function;
Variables::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*Variables
pub fn __all__(db: GoDB) -> *Variables;
Variables::getName
- Parameter
self
:Variables
- Return
string
pub fn getName(self: Variables) -> string;
Variables::getSignature
- Parameter
self
:Variables
- Return
*string
pub fn getSignature(self: Variables) -> *string;
Variables::getValue
/**
* @brief gets the value of this element.
* @return string
*/
- Parameter
self
:Variables
- Return
string
pub fn getValue(self: Variables) -> string;