casacore
|
Raw TaQL parse tree node defining a unary operator. More...
#include <TaQLNodeDer.h>
Public Types | |
enum | Type { U_MINUS , U_NOT , U_EXISTS , U_NOTEXISTS , U_BITNOT } |
Do not change the values of this enum, as objects might be persistent. More... | |
Public Member Functions | |
TaQLUnaryNodeRep (Type type, const TaQLNode &child) | |
virtual TaQLNodeResult | visit (TaQLNodeVisitor &) const override |
Visit a node for tree traversal. More... | |
virtual void | show (std::ostream &os) const override |
Print the object in an ostream. More... | |
virtual void | save (AipsIO &aio) const override |
Save the object. More... | |
Public Member Functions inherited from casacore::TaQLNodeRep | |
TaQLNodeRep (int nodeType) | |
Constructor for derived classes specifying the type. More... | |
virtual | ~TaQLNodeRep () |
char | nodeType () const |
Get the node type of the derived class. More... | |
const TaQLStyle & | style () const |
Get the TaQL style. More... | |
String | addEscape (const String &str) const |
Add escape characters to a table name where needed. More... | |
Static Public Member Functions | |
static TaQLNode | restore (AipsIO &aio) |
Static Public Member Functions inherited from casacore::TaQLNodeRep | |
static String | checkDataType (const String &) |
Check the data type string and return its standard form. More... | |
Public Attributes | |
Type | itsType |
TaQLNode | itsChild |
Raw TaQL parse tree node defining a unary operator.
Internal
This class is a TaQLNodeRep holding a unary operator and operand. The operators supported are -, ~, NOT, EXISTS, and NOT EXISTS. Note the unary operator + is superfluous and is ignored by the parser.
Definition at line 154 of file TaQLNodeDer.h.
Do not change the values of this enum, as objects might be persistent.
Enumerator | |
---|---|
U_MINUS | |
U_NOT | |
U_EXISTS | |
U_NOTEXISTS | |
U_BITNOT |
Definition at line 158 of file TaQLNodeDer.h.
|
overridevirtual |
Save the object.
Implements casacore::TaQLNodeRep.
|
overridevirtual |
Print the object in an ostream.
Implements casacore::TaQLNodeRep.
|
overridevirtual |
Visit a node for tree traversal.
Implements casacore::TaQLNodeRep.
TaQLNode casacore::TaQLUnaryNodeRep::itsChild |
Definition at line 170 of file TaQLNodeDer.h.
Type casacore::TaQLUnaryNodeRep::itsType |
Definition at line 169 of file TaQLNodeDer.h.