MetainfoDO

/**
* @brief DO class: A metainfo.
*/

Primary key: oid: int

schema MetainfoDO {
  @primary oid: int,
  kind: string,
  value: string,
  program_hash_id: int
}

MetainfoDO::__all__

Data constraint method.

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

MetainfoDO::getProgramHashId

/**
* @brief gets the program hash id of this element.
* @return int
*/
pub fn getProgramHashId(self: MetainfoDO) -> int;

MetainfoDO::getValue

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

MetainfoDO::getKind

/**
* @brief gets the kind of this element.
* @return string
*/
pub fn getKind(self: MetainfoDO) -> string;