NpClassDO
/** * @brief DO class: non-physical class. */
Primary key: element_hash_id: int
schema NpClassDO { @primary element_hash_id: int, name: string, qualified_name: string, parent_hash_id: int }
NpClassDO::getParentHashId
/** * @brief gets the parent hash id of this element. * @return int */
- Parameter
self
:NpClassDO
- Return
int
pub fn getParentHashId(self: NpClassDO) -> int;
NpClassDO::getQualifiedName
/** * @brief gets the qualified name of this element. * @return string */
- Parameter
self
:NpClassDO
- Return
string
pub fn getQualifiedName(self: NpClassDO) -> string;
NpClassDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*NpClassDO
pub fn __all__(db: JavaDB) -> *NpClassDO;
NpClassDO::getName
/** * @brief gets the name of this element. * @return string */
- Parameter
self
:NpClassDO
- Return
string
pub fn getName(self: NpClassDO) -> string;