ExpressionListExpressionRelationDO

/**
* @brief DO class: Reference relation between expression list to its contained expression.
*/

Primary key: expression_hash_id: int

schema ExpressionListExpressionRelationDO {
  expression_list_hash_id: int,
  @primary expression_hash_id: int,
  position: int
}

ExpressionListExpressionRelationDO::getPosition

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

ExpressionListExpressionRelationDO::getExpressionListHashId

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

ExpressionListExpressionRelationDO::__all__

Data constraint method.

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

ExpressionListExpressionRelationDO::getExpressionHashId

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