IntegerLiteralDO

/**
* @brief DO class: An integer literal, for example, "4".
*/

Primary key: element_hash_id: int

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

IntegerLiteralDO::getValue

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

IntegerLiteralDO::__all__

Data constraint method.

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