JumpStatement

/**
* @brief A jump statement.
*/

Inherit from Statement

Primary key: element_hash_id: int

schema JumpStatement extends Statement {
  @primary element_hash_id: int,
  parent_hash_id: int,
  index_order: int,
  location_hash_id: int,
  printable_text: string,
  type: string
}

JumpStatement::getAEnclosingStatement

/**
* @brief gets the transitive statement containing this statement.
* @return Statement 
*/
pub fn getAEnclosingStatement(self: JumpStatement) -> *Statement;

JumpStatement::getType

/**
* @brief gets the type of this element.
* @return string
*/
pub fn getType(self: JumpStatement) -> string;

JumpStatement::getEnclosingStatement

/**
* @brief gets the statement containing this statement.
* @return Statement 
*/
pub fn getEnclosingStatement(self: JumpStatement) -> Statement;

JumpStatement::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: JumpStatement) -> int;

JumpStatement::getAChild

/**
* @brief gets a child of this statement.
* @return Statement 
*/
pub fn getAChild(self: JumpStatement) -> *Statement;

JumpStatement::getTarget

/**
* @brief description
* @return StatementParent 
*/
pub fn getTarget(self: JumpStatement) -> StatementParent;

JumpStatement::getIndex

/**
* @brief gets the index order of this element.
* @return int
*/
pub fn getIndex(self: JumpStatement) -> int;

JumpStatement::getEnclosingTarget

pub fn getEnclosingTarget(self: JumpStatement) -> Statement;

JumpStatement::getParent

/**
* @brief gets the parent element of the statement
* @return StatementParent 
*/
pub fn getParent(self: JumpStatement) -> ElementParent;

JumpStatement::getLocationHashId

/**
* @brief gets the location hash id of this element.
* @return int
*/
pub fn getLocationHashId(self: JumpStatement) -> int;

JumpStatement::getLabelTarget

/**
* @brief gets the statement of the labeled statement.
* @return Statement 
*/
pub fn getLabelTarget(self: JumpStatement) -> Statement;

JumpStatement::getEnclosingCallable

/**
* @brief gets the immediately enclosing callable (method or constructor) whose body contains this statement.
* @return Callable 
*/
pub fn getEnclosingCallable(self: JumpStatement) -> Callable;

JumpStatement::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: JumpStatement) -> Location;

JumpStatement::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: JumpStatement) -> string;

JumpStatement::__all__

Data constraint method.

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

JumpStatement::getTargetLabel

/**
* @brief gets the labeled statement that the break or continue statement refers to.
* @return LabeledStatement 
*/
pub fn getTargetLabel(self: JumpStatement) -> LabeledStatement;

JumpStatement::getSize

/**
* @brief gets the size information for the element.
* @return NumberOfLines
*/
pub fn getSize(self: JumpStatement) -> NumberOfLines;

JumpStatement::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return ElementParent 
*/
pub fn getAnAncestor(self: JumpStatement) -> *ElementParent;