InstanceofExpressionDO
/**
* @brief DO class: An instanceof expression.
*/
Primary key: element_hash_id: int
schema InstanceofExpressionDO {
@primary element_hash_id: int,
operand_hash_id: int,
check_type_hash_id: int,
pattern_hash_id: int
}
InstanceofExpressionDO::getPatternHashId
/**
* @brief gets the pattern hash id of this element.
* @return int
*/
- Parameter
self
:InstanceofExpressionDO
- Return
int
pub fn getPatternHashId(self: InstanceofExpressionDO) -> int;
InstanceofExpressionDO::getCheckTypeHashId
/**
* @brief gets the check type hash id of this element.
* @return int
*/
- Parameter
self
:InstanceofExpressionDO
- Return
int
pub fn getCheckTypeHashId(self: InstanceofExpressionDO) -> int;
InstanceofExpressionDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*InstanceofExpressionDO
pub fn __all__(db: JavaDB) -> *InstanceofExpressionDO;
InstanceofExpressionDO::getOperandHashId
/**
* @brief gets the operand hash id of this element.
* @return int
*/
- Parameter
self
:InstanceofExpressionDO
- Return
int
pub fn getOperandHashId(self: InstanceofExpressionDO) -> int;