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

StringLiteralDO::__all__

Data constraint method.

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