NewExpressionDO

/**
* @brief DO class: A new expression.
*/

Primary key: element_hash_id: int

schema NewExpressionDO {
  @primary element_hash_id: int,
  reference_hash_id: int,
  type_hash_id: int
}

NewExpressionDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: NewExpressionDO) -> int;

NewExpressionDO::__all__

Data constraint method.

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

NewExpressionDO::getReferenceHashId

/**
* @brief gets the reference hash id of this element.
* @return int
*/
pub fn getReferenceHashId(self: NewExpressionDO) -> int;