ExpressionListExpressionRelation
/**
* @brief Reference relation between expression list to its contained expression.
*/
Inherit from ExpressionListExpressionRelationDO
Primary key: expression_hash_id: int
schema ExpressionListExpressionRelation extends ExpressionListExpressionRelationDO {
expression_list_hash_id: int,
@primary expression_hash_id: int,
position: int
}
ExpressionListExpressionRelation::getExpressionList
- Parameter
self
:ExpressionListExpressionRelation
- Return
ExpressionList
pub fn getExpressionList(self: ExpressionListExpressionRelation) -> ExpressionList;
ExpressionListExpressionRelation::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ExpressionListExpressionRelation
pub fn __all__(db: JavaDB) -> *ExpressionListExpressionRelation;
ExpressionListExpressionRelation::getExpression
- Parameter
self
:ExpressionListExpressionRelation
- Return
Expression
pub fn getExpression(self: ExpressionListExpressionRelation) -> Expression;
ExpressionListExpressionRelation::getPosition
- Parameter
self
:ExpressionListExpressionRelation
- Return
int
pub fn getPosition(self: ExpressionListExpressionRelation) -> int;
ExpressionListExpressionRelation::getExpressionHashId
/**
* @brief gets the expression hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListExpressionRelation
- Return
int
pub fn getExpressionHashId(self: ExpressionListExpressionRelation) -> int;
ExpressionListExpressionRelation::getExpressionListHashId
/**
* @brief gets the expression list hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListExpressionRelation
- Return
int
pub fn getExpressionListHashId(self: ExpressionListExpressionRelation) -> int;