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
*/
pub fn getCallableHashId(self: CallableEnclosingStatement) -> int;

CallableEnclosingStatement::__all__

Data constraint method.

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

CallableEnclosingStatement::getEnclosingCallable

/**
* @brief gets the enclosing callable of a statement, if any.
* @return Callable
*/
pub fn getEnclosingCallable(self: CallableEnclosingStatement) -> Callable;