NpMethodDO

/**
* @brief DO class: non-physical method.
*/

Primary key: element_hash_id: int

schema NpMethodDO {
  @primary element_hash_id: int,
  name: string,
  signature: string,
  type_hash_id: int,
  parent_hash_id: int
}

NpMethodDO::getParentHashId

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

NpMethodDO::getTypeHashId

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

NpMethodDO::getSignature

/**
* @brief gets the signature of this element.
* @return string
*/
pub fn getSignature(self: NpMethodDO) -> string;

NpMethodDO::__all__

Data constraint method.

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

NpMethodDO::getName

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