OrLogicalExpression

/**
* @brief A '||' expression.
*/

Inherit from BinaryExpression

Primary key: element_hash_id: int

schema OrLogicalExpression extends BinaryExpression {
  @primary element_hash_id: int,
  name: string,
  parent_hash_id: int,
  index_order: int,
  location_hash_id: int,
  printable_text: string
}

OrLogicalExpression::getSize

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

OrLogicalExpression::getRightOperandExpression

/**
* @brief gets the operand on the right-hand side of the binary expression.
* @return Expression 
*/
pub fn getRightOperandExpression(self: OrLogicalExpression) -> Expression;

OrLogicalExpression::getAnAncestor

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

OrLogicalExpression::getIndex

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

OrLogicalExpression::getLeftOperandExpression

/**
* @brief gets the operand on the left-hand side of the binary expression.
* @return Expression 
*/
pub fn getLeftOperandExpression(self: OrLogicalExpression) -> Expression;

OrLogicalExpression::getOperand

/**
* @brief gets an operand of the binary expression.
* @return Expression 
*/
pub fn getOperand(self: OrLogicalExpression) -> *Expression;

OrLogicalExpression::getParent

/**
* @brief gets the parent of the expression.
* @return ElementParent 
*/
pub fn getParent(self: OrLogicalExpression) -> ElementParent;

OrLogicalExpression::getLocationHashId

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

OrLogicalExpression::getType

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

OrLogicalExpression::getEnclosingStatement

/**
* @brief gets the statement which encloses the expression.
* @return Statement 
*/
pub fn getEnclosingStatement(self: OrLogicalExpression) -> Statement;

OrLogicalExpression::getOpcode

/**
* @brief gets the opcode of the binary expression
* @return string 
*/
pub fn getOpcode(self: OrLogicalExpression) -> string;

OrLogicalExpression::getParentHashId

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

OrLogicalExpression::__all__

Data constraint method.

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

OrLogicalExpression::getPrintableText

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

OrLogicalExpression::getLocation

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

OrLogicalExpression::getEnclosingCallable

/**
* @brief gets the callable in which this expression occurs.
* @return Callable 
*/
pub fn getEnclosingCallable(self: OrLogicalExpression) -> Callable;