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
*/
- Parameter
self
:ClassHierarchyDO
- Return
int
pub fn getParentHashId(self: ClassHierarchyDO) -> int;
ClassHierarchyDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ClassHierarchyDO
pub fn __all__(db: JavaDB) -> *ClassHierarchyDO;