TypeCastExpressionDO

/**
* @brief DO class: A type cast expression.
*/

Primary key: element_hash_id: int

schema TypeCastExpressionDO {
  @primary element_hash_id: int,
  cast_expression_hash_id: int
}

TypeCastExpressionDO::getCastExpressionHashId

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

TypeCastExpressionDO::__all__

Data constraint method.

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