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 Method Summary collapse
-
#initialize {|self| ... } ⇒ SearchRowLocation
constructor
A new instance of SearchRowLocation.
Constructor Details
#initialize {|self| ... } ⇒ SearchRowLocation
Returns a new instance of SearchRowLocation.
1230 1231 1232 |
# File 'lib/couchbase/search_options.rb', line 1230 def initialize yield self if block_given? end |
Instance Attribute Details
#array_positions ⇒ Array<Integer>
Returns the positions of the term within any elements.
1227 1228 1229 |
# File 'lib/couchbase/search_options.rb', line 1227 def array_positions @array_positions end |
#end_offset ⇒ Integer
Returns end byte offset of the term in the field.
1224 1225 1226 |
# File 'lib/couchbase/search_options.rb', line 1224 def end_offset @end_offset end |
#field ⇒ String
1212 1213 1214 |
# File 'lib/couchbase/search_options.rb', line 1212 def field @field end |
#position ⇒ Integer
Returns the position of the term within the field, starting at 1.
1218 1219 1220 |
# File 'lib/couchbase/search_options.rb', line 1218 def position @position end |
#start_offset ⇒ Integer
Returns start byte offset of the term in the field.
1221 1222 1223 |
# File 'lib/couchbase/search_options.rb', line 1221 def start_offset @start_offset end |
#term ⇒ String
1215 1216 1217 |
# File 'lib/couchbase/search_options.rb', line 1215 def term @term end |