EntryDO
/**
* @brief DO class: An entry.
*/
Primary key: element_oid: int
schema EntryDO {
@primary element_oid: int,
key: string,
value: string,
printable_text: string,
location_oid: int
}
EntryDO::getPrintableText
/**
* @brief gets the printable text of this element.
* @return string
*/
- Parameter
self
:EntryDO
- Return
string
pub fn getPrintableText(self: EntryDO) -> string;
EntryDO::getValue
/**
* @brief gets the value of this element.
* @return string
*/
- Parameter
self
:EntryDO
- Return
string
pub fn getValue(self: EntryDO) -> string;
EntryDO::getLocationOid
/**
* @brief gets the location oid of this element.
* @return int
*/
- Parameter
self
:EntryDO
- Return
int
pub fn getLocationOid(self: EntryDO) -> int;
EntryDO::__all__
Data constraint method.
- Parameter
db
:PropertiesDB
- Return
*EntryDO
pub fn __all__(db: PropertiesDB) -> *EntryDO;
EntryDO::getKey
/**
* @brief gets the key of this element.
* @return string
*/
- Parameter
self
:EntryDO
- Return
string
pub fn getKey(self: EntryDO) -> string;