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