Class: CmisServer::Query::Statement::Identifier
- Defined in:
- lib/cmis_server/query/statement.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
(also: #value)
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ Identifier
constructor
A new instance of Identifier.
- #to_cmis_where_key ⇒ Object
Constructor Details
#initialize(name) ⇒ Identifier
Returns a new instance of Identifier.
285 286 287 |
# File 'lib/cmis_server/query/statement.rb', line 285 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly) Also known as: value
Returns the value of attribute name.
293 294 295 |
# File 'lib/cmis_server/query/statement.rb', line 293 def name @name end |
Instance Method Details
#to_cmis_where_key ⇒ Object
289 290 291 |
# File 'lib/cmis_server/query/statement.rb', line 289 def to_cmis_where_key CmisServer::Id.new(self.name).to_method_name.to_sym end |