StringLiteralDO
/** * @brief DO class: A string literal, for example "abc". */ Primary key: element_hash_id: int
schema StringLiteralDO { @primary element_hash_id: int, value: string } StringLiteralDO::getValue
/** * @brief gets the value of this element. * @return string */ - Parameter
self:StringLiteralDO - Return
string
pub fn getValue(self: StringLiteralDO) -> string; StringLiteralDO::__all__
Data constraint method.
- Parameter
db:JavaDB - Return
*StringLiteralDO
pub fn __all__(db: JavaDB) -> *StringLiteralDO;