Class: CmisServer::Query::WhereCondition
- Inherits:
-
Object
- Object
- CmisServer::Query::WhereCondition
- Defined in:
- lib/cmis_server/query/simple_parser.rb
Instance Attribute Summary collapse
-
#left ⇒ Object
Returns the value of attribute left.
-
#operator ⇒ Object
Returns the value of attribute operator.
-
#right ⇒ Object
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left, operator, right) ⇒ WhereCondition
constructor
A new instance of WhereCondition.
Constructor Details
#initialize(left, operator, right) ⇒ WhereCondition
Returns a new instance of WhereCondition.
260 261 262 263 264 |
# File 'lib/cmis_server/query/simple_parser.rb', line 260 def initialize(left, operator, right) @left = left @operator = operator @right = right end |
Instance Attribute Details
#left ⇒ Object
Returns the value of attribute left.
258 259 260 |
# File 'lib/cmis_server/query/simple_parser.rb', line 258 def left @left end |
#operator ⇒ Object
Returns the value of attribute operator.
258 259 260 |
# File 'lib/cmis_server/query/simple_parser.rb', line 258 def operator @operator end |
#right ⇒ Object
Returns the value of attribute right.
258 259 260 |
# File 'lib/cmis_server/query/simple_parser.rb', line 258 def right @right end |