BooleanLiteralDO

/** * @brief DO class: A boolean literal. */ 

Primary key: element_hash_id: int

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

BooleanLiteralDO::getValue

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

BooleanLiteralDO::__all__

Data constraint method.

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