UnaryExpressionDO

/** * @brief DO class: An unary expression. */ 

Primary key: element_hash_id: int

schema UnaryExpressionDO { @primary element_hash_id: int, operand_hash_id: int, opcode: string, is_postfix: int } 

UnaryExpressionDO::getIsPostfix

/** * @brief examine the expression is postfix or prefix, 1 means postfix expression. * @return int */ 
pub fn getIsPostfix(self: UnaryExpressionDO) -> int; 

UnaryExpressionDO::getOpcode

/** * @brief gets the opcode of this element. * @return string */ 
pub fn getOpcode(self: UnaryExpressionDO) -> string; 

UnaryExpressionDO::__all__

Data constraint method.

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

UnaryExpressionDO::getOperandHashId

/** * @brief gets the operand hash id of this element. * @return int */ 
pub fn getOperandHashId(self: UnaryExpressionDO) -> int;