CatchSectionDO

/**
* @brief DO class: A catch section.
*/

Primary key: element_hash_id: int

schema CatchSectionDO {
  @primary element_hash_id: int,
  printable_text: string,
  parameter_hash_id: int,
  type_hash_id: int,
  location_hash_id: int,
  try_statement_hash_id: int,
  index_order: int
}

CatchSectionDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: CatchSectionDO) -> string;

CatchSectionDO::getLocationHashId

/**
* @brief gets the location hash id of this element.
* @return int
*/
pub fn getLocationHashId(self: CatchSectionDO) -> int;

CatchSectionDO::getIndex

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

CatchSectionDO::getTryStatementHashId

/**
* @brief gets the try statement hash id of this element.
* @return int
*/
pub fn getTryStatementHashId(self: CatchSectionDO) -> int;

CatchSectionDO::getParameterHashId

/**
* @brief gets the parameter hash id of this element.
* @return int
*/
pub fn getParameterHashId(self: CatchSectionDO) -> int;

CatchSectionDO::__all__

Data constraint method.

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

CatchSectionDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: CatchSectionDO) -> int;