TypeLiteralDO

/**
* @brief DO class: A type literal, for example, "String.class".
*/

Primary key: element_hash_id: int

schema TypeLiteralDO {
  @primary element_hash_id: int,
  type_element_hash_id: int,
  type_hash_id: int
}

TypeLiteralDO::getTypeHashId

/**
* @brief gets the type hash id of this element.
* @return int
*/
pub fn getTypeHashId(self: TypeLiteralDO) -> int;

TypeLiteralDO::__all__

Data constraint method.

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

TypeLiteralDO::getTypeElementHashId

/**
* @brief gets the type element hash id of this element.
* @return int
*/
pub fn getTypeElementHashId(self: TypeLiteralDO) -> int;