ArrayAccessExpressionDO

/**
* @brief DO class: An array access expression.
*/

Primary key: element_hash_id: int

schema ArrayAccessExpressionDO {
  @primary element_hash_id: int,
  index_expression_hash_id: int,
  array_expression_hash_id: int
}

ArrayAccessExpressionDO::getArrayExpressionHashId

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

ArrayAccessExpressionDO::__all__

Data constraint method.

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

ArrayAccessExpressionDO::getIndexExpressionHashId

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