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
*/
- Parameter
self
:BinaryExpressionDO
- Return
string
pub fn getOpcode(self: BinaryExpressionDO) -> string;
BinaryExpressionDO::getRhsHashId
/**
* @brief gets the rhs hash id of this element.
* @return int
*/
- Parameter
self
:BinaryExpressionDO
- Return
int
pub fn getRhsHashId(self: BinaryExpressionDO) -> int;
BinaryExpressionDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*BinaryExpressionDO
pub fn __all__(db: JavaDB) -> *BinaryExpressionDO;
BinaryExpressionDO::getLhsHashId
/**
* @brief gets the lhs hash id of this element.
* @return int
*/
- Parameter
self
:BinaryExpressionDO
- Return
int
pub fn getLhsHashId(self: BinaryExpressionDO) -> int;