OrLogicalExpression

/**
* @brief A "or" logical expression.
*/

Inherit from BooleanExpression

Primary key: element_oid: int

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

OrLogicalExpression::getPrintableText

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

OrLogicalExpression::getSize

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

OrLogicalExpression::getLocationOid

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

OrLogicalExpression::getType

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

OrLogicalExpression::__all__

Data constraint method.

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

OrLogicalExpression::getLocation

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

OrLogicalExpression::getAnAncestor

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

OrLogicalExpression::getParent

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

OrLogicalExpression::getParentOid

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

OrLogicalExpression::getElementIndex

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

OrLogicalExpression::getEnclosingScope

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