MatchCaseDO

/**
* @brief DO class: A match case.
*/

Primary key: element_oid: int

schema MatchCaseDO {
  @primary element_oid: int,
  pattern_oid: int,
  element_index: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string,
  is_default: int
}

MatchCaseDO::getIsDefault

/**
* @brief gets the is default of this element.
* @return int
*/
pub fn getIsDefault(self: MatchCaseDO) -> int;

MatchCaseDO::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: MatchCaseDO) -> string;

MatchCaseDO::getPatternOid

/**
* @brief gets the pattern oid of this element.
* @return int
*/
pub fn getPatternOid(self: MatchCaseDO) -> int;

MatchCaseDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *MatchCaseDO;

MatchCaseDO::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: MatchCaseDO) -> int;

MatchCaseDO::getElementIndex

/**
* @brief gets the element index of this element.
* @return int
*/
pub fn getElementIndex(self: MatchCaseDO) -> int;

MatchCaseDO::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: MatchCaseDO) -> int;