ParameterDO

/**
* @brief DO class: A parameter of a method, foreach statement or catch block.
*/

Primary key: element_hash_id: int

schema ParameterDO {
  @primary element_hash_id: int,
  name: string,
  index_order: int,
  parent_hash_id: int,
  location_hash_id: int,
  printable_text: string,
  type_hash_id: int
}

ParameterDO::getPrintableText

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

ParameterDO::getTypeHashId

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

ParameterDO::__all__

Data constraint method.

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

ParameterDO::getLocationHashId

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

ParameterDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: ParameterDO) -> string;

ParameterDO::getIndex

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

ParameterDO::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: ParameterDO) -> int;