AndLogicalExpression

/**
* @brief An "and" logical expression.
*/

Inherit from BooleanExpression

Primary key: element_oid: int

schema AndLogicalExpression extends BooleanExpression {
  @primary element_oid: int,
  type: string,
  element_index: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string
}

AndLogicalExpression::getPrintableText

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

AndLogicalExpression::getSize

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

AndLogicalExpression::getLocationOid

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

AndLogicalExpression::getType

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

AndLogicalExpression::__all__

Data constraint method.

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

AndLogicalExpression::getLocation

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

AndLogicalExpression::getAnAncestor

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

AndLogicalExpression::getParent

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

AndLogicalExpression::getParentOid

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

AndLogicalExpression::getElementIndex

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

AndLogicalExpression::getEnclosingScope

/**
* @brief gets the immediately enclosing scope (module, function or class) whose body contains this statement.
* @return Scope 
*/
pub fn getEnclosingScope(self: AndLogicalExpression) -> Scope;