ConstantDO
/**
* @brief DO class: A constant.
*/
Primary key: element_oid: int
schema ConstantDO {
@primary element_oid: int,
value: string
}
ConstantDO::getValue
/**
* @brief gets the value of this element.
* @return string
*/
- Parameter
self
:ConstantDO
- Return
string
pub fn getValue(self: ConstantDO) -> string;
ConstantDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*ConstantDO
pub fn __all__(db: PythonDB) -> *ConstantDO;