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
*/
pub fn getValue(self: DoubleLiteralDO) -> string;

DoubleLiteralDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *DoubleLiteralDO;