ExpressionListDO
/**
* @brief DO class: A list of expression separated by commas.
*/
Primary key: element_hash_id: int
schema ExpressionListDO {
@primary element_hash_id: int,
parent_hash_id: int,
location_hash_id: int,
printable_text: string,
size: int
}
ExpressionListDO::getSize
- Parameter
self
:ExpressionListDO
- Return
int
pub fn getSize(self: ExpressionListDO) -> int;
ExpressionListDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:ExpressionListDO
- Return
string
pub fn getPrintableText(self: ExpressionListDO) -> string;
ExpressionListDO::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListDO
- Return
int
pub fn getLocationHashId(self: ExpressionListDO) -> int;
ExpressionListDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ExpressionListDO
pub fn __all__(db: JavaDB) -> *ExpressionListDO;
ExpressionListDO::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListDO
- Return
int
pub fn getParentHashId(self: ExpressionListDO) -> int;