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
*/
- Parameter
self
:AndLogicalExpression
- 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
*/
- Parameter
self
:AndLogicalExpression
- Return
Expression
pub fn getRightOperandExpression(self: AndLogicalExpression) -> Expression;
AndLogicalExpression::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:AndLogicalExpression
- Return
*ElementParent
pub fn getAnAncestor(self: AndLogicalExpression) -> *ElementParent;
AndLogicalExpression::getIndex
/**
* @brief gets the index order of this element.
* @return int
*/
- Parameter
self
:AndLogicalExpression
- 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
*/
- Parameter
self
:AndLogicalExpression
- Return
Expression
pub fn getLeftOperandExpression(self: AndLogicalExpression) -> Expression;
AndLogicalExpression::getOperand
/**
* @brief gets an operand of the binary expression.
* @return Expression
*/
- Parameter
self
:AndLogicalExpression
- Return
*Expression
pub fn getOperand(self: AndLogicalExpression) -> *Expression;
AndLogicalExpression::getParent
/**
* @brief gets the parent of the expression.
* @return ElementParent
*/
- Parameter
self
:AndLogicalExpression
- Return
ElementParent
pub fn getParent(self: AndLogicalExpression) -> ElementParent;
AndLogicalExpression::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:AndLogicalExpression
- Return
int
pub fn getLocationHashId(self: AndLogicalExpression) -> int;
AndLogicalExpression::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:AndLogicalExpression
- Return
string
pub fn getType(self: AndLogicalExpression) -> string;
AndLogicalExpression::getEnclosingStatement
/**
* @brief gets the statement which encloses the expression.
* @return Statement
*/
- Parameter
self
:AndLogicalExpression
- Return
Statement
pub fn getEnclosingStatement(self: AndLogicalExpression) -> Statement;
AndLogicalExpression::getOpcode
/**
* @brief gets the opcode of the binary expression
* @return string
*/
- Parameter
self
:AndLogicalExpression
- Return
string
pub fn getOpcode(self: AndLogicalExpression) -> string;
AndLogicalExpression::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:AndLogicalExpression
- Return
int
pub fn getParentHashId(self: AndLogicalExpression) -> int;
AndLogicalExpression::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*AndLogicalExpression
pub fn __all__(db: JavaDB) -> *AndLogicalExpression;
AndLogicalExpression::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:AndLogicalExpression
- Return
string
pub fn getPrintableText(self: AndLogicalExpression) -> string;
AndLogicalExpression::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:AndLogicalExpression
- Return
Location
pub fn getLocation(self: AndLogicalExpression) -> Location;
AndLogicalExpression::getEnclosingCallable
/**
* @brief gets the callable in which this expression occurs.
* @return Callable
*/
- Parameter
self
:AndLogicalExpression
- Return
Callable
pub fn getEnclosingCallable(self: AndLogicalExpression) -> Callable;