IdentifierDO

/**
* @brief DO class: An identifier.
*/

Primary key: element_hash_id: int

schema IdentifierDO {
  @primary element_hash_id: int,
  location_hash_id: int,
  name: string,
  parent_hash_id: int
}

IdentifierDO::getParentHashId

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

IdentifierDO::getName

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

IdentifierDO::__all__

Data constraint method.

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

IdentifierDO::getLocationHashId

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