SwitchStatementDO
/**
* @brief DO class: A switch statement.
*/
Primary key: oid: int
schema SwitchStatementDO {
@primary oid: int,
condition_expression_oid: int,
starting_switch_case_oid: int,
printable_text: string
}
SwitchStatementDO::getStartingSwitchCaseOid
/**
* @brief Gets the starting switch case statement of this switch statement
* @return int
*/
- Parameter
self
:SwitchStatementDO
- Return
int
pub fn getStartingSwitchCaseOid(self: SwitchStatementDO) -> int;
SwitchStatementDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*SwitchStatementDO
pub fn __all__(db: CfamilyDB) -> *SwitchStatementDO;
SwitchStatementDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:SwitchStatementDO
- Return
string
pub fn getPrintableText(self: SwitchStatementDO) -> string;
SwitchStatementDO::getConditionExpressionOid
/**
* @brief Gets the condition of this switch statement, the condition is an expression
* @return int
*/
- Parameter
self
:SwitchStatementDO
- Return
int
pub fn getConditionExpressionOid(self: SwitchStatementDO) -> int;