ClassHierarchyDO

/**
* @brief DO class: Represents the class hierarchy of all classes.
*/

Primary key: child_hash_id: int

schema ClassHierarchyDO {
  @primary child_hash_id: int,
  parent_hash_id: int
}

ClassHierarchyDO::getParentHashId

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

ClassHierarchyDO::__all__

Data constraint method.

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