BooleanExpression

/** * @brief A boolean expression. */ 

Inherit from Expression

Primary key: element_oid: int

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

BooleanExpression::getLocation

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

BooleanExpression::getAnAncestor

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

BooleanExpression::getParent

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

BooleanExpression::getEnclosingScope

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

BooleanExpression::getElementIndex

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

BooleanExpression::getParentOid

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

BooleanExpression::getType

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

BooleanExpression::__all__

Data constraint method.

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

BooleanExpression::getLocationOid

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

BooleanExpression::getSize

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

BooleanExpression::getPrintableText

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