ForStatementDO

/**
* @brief DO class: A for statement.
*/

Primary key: element_hash_id: int

schema ForStatementDO {
  @primary element_hash_id: int,
  initialization_hash_id: int,
  condition_hash_id: int,
  update_hash_id: int,
  body_hash_id: int
}

ForStatementDO::getBodyHashId

/**
* @brief gets the body hash id of this element.
* @return int
*/
pub fn getBodyHashId(self: ForStatementDO) -> int;

ForStatementDO::getUpdateHashId

/**
* @brief gets the update hash id of this element.
* @return int
*/
pub fn getUpdateHashId(self: ForStatementDO) -> int;

ForStatementDO::getConditionHashId

/**
* @brief gets the condition hash id of this element.
* @return int
*/
pub fn getConditionHashId(self: ForStatementDO) -> int;

ForStatementDO::__all__

Data constraint method.

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

ForStatementDO::getInitializationHashId

/**
* @brief gets the initialization hash id of this element.
* @return int
*/
pub fn getInitializationHashId(self: ForStatementDO) -> int;