NameStringDO

/** * @brief DO class: Name and value for a named expression or statement, like break statement, labeled statement. */ 

Primary key: parent_hash_id: int

schema NameStringDO { @primary parent_hash_id: int, name_element_hash_id: int, value_element_hash_id: int } 

NameStringDO::getValueElementHashId

/** * @brief gets the value element hash id of this element. * @return int */ 
pub fn getValueElementHashId(self: NameStringDO) -> int; 

NameStringDO::__all__

Data constraint method.

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

NameStringDO::getNameElementHashId

/** * @brief gets the name element hash id of this element. * @return int */ 
pub fn getNameElementHashId(self: NameStringDO) -> int;