Class: CmisServer::Query::Statement::SearchCondition
- Defined in:
- lib/cmis_server/query/statement.rb
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left, right) ⇒ SearchCondition
constructor
A new instance of SearchCondition.
Constructor Details
#initialize(left, right) ⇒ SearchCondition
Returns a new instance of SearchCondition.
239 240 241 242 |
# File 'lib/cmis_server/query/statement.rb', line 239 def initialize(left, right) @left = left @right = right end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
244 245 246 |
# File 'lib/cmis_server/query/statement.rb', line 244 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
245 246 247 |
# File 'lib/cmis_server/query/statement.rb', line 245 def right @right end |