TypeDO
/**
* @brief DO class: The base class of the type hierarchy
*/
Primary key: oid: int
schema TypeDO {
@primary oid: int,
kind_name: string,
printable_text: string
}
TypeDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:TypeDO
- Return
string
pub fn getPrintableText(self: TypeDO) -> string;
TypeDO::__all__
Data constraint method.
pub fn __all__(db: CfamilyDB) -> *TypeDO;
TypeDO::getKindName
/**
* @brief Type kind name
* @return string
*/
- Parameter
self
:TypeDO
- Return
string
pub fn getKindName(self: TypeDO) -> string;