AndLogicalExpression

/** * @brief An '&&' expression. */ 

Inherit from BinaryExpression

Primary key: element_hash_id: int

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

AndLogicalExpression::getSize

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

AndLogicalExpression::getRightOperandExpression

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

AndLogicalExpression::getAnAncestor

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

AndLogicalExpression::getIndex

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

AndLogicalExpression::getLeftOperandExpression

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

AndLogicalExpression::getOperand

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

AndLogicalExpression::getParent

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

AndLogicalExpression::getLocationHashId

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

AndLogicalExpression::getType

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

AndLogicalExpression::getEnclosingStatement

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

AndLogicalExpression::getOpcode

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

AndLogicalExpression::getParentHashId

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

AndLogicalExpression::__all__

Data constraint method.

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

AndLogicalExpression::getPrintableText

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

AndLogicalExpression::getLocation

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

AndLogicalExpression::getEnclosingCallable

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