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