Class: Couchbase::Cluster::SearchRowLocation
- Inherits:
-
Object
- Object
- Couchbase::Cluster::SearchRowLocation
- Defined in:
- lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb more...
Instance Attribute Summary collapse
-
#array_positions ⇒ Array<Integer>
The positions of the term within any elements.
-
#end_offset ⇒ Integer
End byte offset of the term in the field.
- #field ⇒ String
-
#position ⇒ Integer
The position of the term within the field, starting at 1.
-
#start_offset ⇒ Integer
Start byte offset of the term in the field.
- #term ⇒ String
Instance Attribute Details
#array_positions ⇒ Array<Integer>
Returns the positions of the term within any elements.
1309 1310 1311 |
# File 'lib/couchbase/search_options.rb', line 1309 def array_positions @array_positions end |
#end_offset ⇒ Integer
Returns end byte offset of the term in the field.
1306 1307 1308 |
# File 'lib/couchbase/search_options.rb', line 1306 def end_offset @end_offset end |
#field ⇒ String
1294 1295 1296 |
# File 'lib/couchbase/search_options.rb', line 1294 def field @field end |
#position ⇒ Integer
Returns the position of the term within the field, starting at 1.
1300 1301 1302 |
# File 'lib/couchbase/search_options.rb', line 1300 def position @position end |
#start_offset ⇒ Integer
Returns start byte offset of the term in the field.
1303 1304 1305 |
# File 'lib/couchbase/search_options.rb', line 1303 def start_offset @start_offset end |
#term ⇒ String
1297 1298 1299 |
# File 'lib/couchbase/search_options.rb', line 1297 def term @term end |