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

pub fn getExpressionList(self: ExpressionListExpressionRelation) -> ExpressionList;

ExpressionListExpressionRelation::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *ExpressionListExpressionRelation;

ExpressionListExpressionRelation::getExpression

pub fn getExpression(self: ExpressionListExpressionRelation) -> Expression;

ExpressionListExpressionRelation::getPosition

pub fn getPosition(self: ExpressionListExpressionRelation) -> int;

ExpressionListExpressionRelation::getExpressionHashId

/**
* @brief gets the expression hash id of this element.
* @return int
*/
pub fn getExpressionHashId(self: ExpressionListExpressionRelation) -> int;

ExpressionListExpressionRelation::getExpressionListHashId

/**
* @brief gets the expression list hash id of this element.
* @return int
*/
pub fn getExpressionListHashId(self: ExpressionListExpressionRelation) -> int;