CallableEnclosingStatement
/**
* @brief A callable enclosing statement relation class.
*/
Inherit from CallableEnclosingStatementDO
Primary key: statement_hash_id: int
schema CallableEnclosingStatement extends CallableEnclosingStatementDO {
@primary statement_hash_id: int,
callable_hash_id: int
}
CallableEnclosingStatement::getCallableHashId
/**
* @brief gets the callable hash id of this element.
* @return int
*/
- Parameter
self
:CallableEnclosingStatement
- Return
int
pub fn getCallableHashId(self: CallableEnclosingStatement) -> int;
CallableEnclosingStatement::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*CallableEnclosingStatement
pub fn __all__(db: JavaDB) -> *CallableEnclosingStatement;
CallableEnclosingStatement::getEnclosingCallable
/**
* @brief gets the enclosing callable of a statement, if any.
* @return Callable
*/
- Parameter
self
:CallableEnclosingStatement
- Return
Callable
pub fn getEnclosingCallable(self: CallableEnclosingStatement) -> Callable;