UnaryOpDO
/**
* @brief DO class: An unary op.
*/
Primary key: element_oid: int
schema UnaryOpDO {
@primary element_oid: int,
type: string,
location_oid: int,
parent_oid: int
}
UnaryOpDO::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:UnaryOpDO
- Return
int
pub fn getParentOid(self: UnaryOpDO) -> int;
UnaryOpDO::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:UnaryOpDO
- Return
int
pub fn getLocationOid(self: UnaryOpDO) -> int;
UnaryOpDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*UnaryOpDO
pub fn __all__(db: PythonDB) -> *UnaryOpDO;
UnaryOpDO::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:UnaryOpDO
- Return
string
pub fn getType(self: UnaryOpDO) -> string;