BinaryExpressionDO

/**
* @brief DO class: A binary expression.
*/

Primary key: element_hash_id: int

schema BinaryExpressionDO {
  @primary element_hash_id: int,
  lhs_hash_id: int,
  rhs_hash_id: int,
  opcode: string
}

BinaryExpressionDO::getOpcode

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

BinaryExpressionDO::getRhsHashId

/**
* @brief gets the rhs hash id of this element.
* @return int
*/
pub fn getRhsHashId(self: BinaryExpressionDO) -> int;

BinaryExpressionDO::__all__

Data constraint method.

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

BinaryExpressionDO::getLhsHashId

/**
* @brief gets the lhs hash id of this element.
* @return int
*/
pub fn getLhsHashId(self: BinaryExpressionDO) -> int;