FloatingPointLiteralDO

/**
* @brief DO class: A floating point literal, for example, "1.5f".
*/

Primary key: element_hash_id: int

schema FloatingPointLiteralDO {
  @primary element_hash_id: int,
  value: string
}

FloatingPointLiteralDO::getValue

/**
* @brief gets the value of this element.
* @return string
*/
pub fn getValue(self: FloatingPointLiteralDO) -> string;

FloatingPointLiteralDO::__all__

Data constraint method.

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