|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Operator | |
---|---|
SFE.Compiler |
Uses of Operator in SFE.Compiler |
---|
Subclasses of Operator in SFE.Compiler | |
---|---|
class |
EqualOperator
A class for representing == operator expressions that can be defined in the program. |
class |
GreaterEqualOperator
A class for representing '>=' operator expressions that can be defined in the program. |
class |
GreaterOperator
A class for representing '>' operator expressions that can be defined in the program. |
class |
LessEqualOperator
A class for representing <= operator expressions that can be defined in the program. |
class |
LessOperator
A class for representing < operator expressions that can be defined in the program. |
class |
NotEqualOperator
A class for representing not equal operator expressions that can be defined in the program. |
class |
PlusOperator
A class for representing binary + operator expressions that can be defined in the program. |
class |
PrimitiveOperator
The PrimitiveOperator class represents a primitive operator in the program. |
Methods in SFE.Compiler that return Operator | |
---|---|
Operator |
OperationExpression.getOperator()
Returns this operator. |
Constructors in SFE.Compiler with parameters of type Operator | |
---|---|
BinaryOpExpression(Operator op,
Expression left,
Expression right)
Constructs a new BinaryOpExpression from a given oparator and inputs. |
|
OperationExpression(Operator op)
Constracts a new OperationExpression from a given Operator. |
|
TrinaryOpExpression(Operator op,
Expression left,
Expression middle,
Expression right)
Constructs a new TrinaryOpExpression from a given oparator and inputs. |
|
UnaryOpExpression(Operator op,
Expression middle)
Constructs a new UnaryOpExpression from a given oparator and input. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |