IfStatementWithElseDO

/**
* @brief DO class: An if statement with else.
*/

Primary key: element_hash_id: int

schema IfStatementWithElseDO {
  @primary element_hash_id: int,
  condition_hash_id: int,
  consequent_hash_id: int,
  alternate_hash_id: int
}

IfStatementWithElseDO::getAlternateHashId

/**
* @brief gets the alternate hash id of this element.
* @return int
*/
pub fn getAlternateHashId(self: IfStatementWithElseDO) -> int;

IfStatementWithElseDO::getConsequentHashId

/**
* @brief gets the consequent hash id of this element.
* @return int
*/
pub fn getConsequentHashId(self: IfStatementWithElseDO) -> int;

IfStatementWithElseDO::__all__

Data constraint method.

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

IfStatementWithElseDO::getConditionHashId

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