IfStatementWithoutElseDO
/**
* @brief DO class: An if statement without else.
*/
Primary key: element_hash_id: int
schema IfStatementWithoutElseDO {
@primary element_hash_id: int,
condition_hash_id: int,
consequent_hash_id: int
}
IfStatementWithoutElseDO::getConsequentHashId
/**
* @brief gets the consequent hash id of this element.
* @return int
*/
- Parameter
self
:IfStatementWithoutElseDO
- Return
int
pub fn getConsequentHashId(self: IfStatementWithoutElseDO) -> int;
IfStatementWithoutElseDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*IfStatementWithoutElseDO
pub fn __all__(db: JavaDB) -> *IfStatementWithoutElseDO;
IfStatementWithoutElseDO::getConditionHashId
/**
* @brief gets the condition hash id of this element.
* @return int
*/
- Parameter
self
:IfStatementWithoutElseDO
- Return
int
pub fn getConditionHashId(self: IfStatementWithoutElseDO) -> int;