Class: Couchbase::SearchSort::SearchSortField
- Inherits:
-
Couchbase::SearchSort
- Object
- Couchbase::SearchSort
- Couchbase::SearchSort::SearchSortField
- Defined in:
- lib/couchbase/search_options.rb,
/code/couchbase-ruby-client/lib/couchbase/search_options.rb
Instance Attribute Summary collapse
-
#desc ⇒ Boolean
If descending order should be applied.
-
#field ⇒ String
readonly
Name of the field to sort by.
-
#missing ⇒ :first, :last
Where the documents with missing field should be placed.
- #mode ⇒ :default, ...
- #type ⇒ :auto, ...
Instance Method Summary collapse
-
#initialize(field) {|| ... } ⇒ SearchSortField
constructor
A new instance of SearchSortField.
Methods inherited from Couchbase::SearchSort
field, geo_distance, id, score
Constructor Details
#initialize(field) {|| ... } ⇒ SearchSortField
Returns a new instance of SearchSortField.
1210 1211 1212 1213 1214 |
# File 'lib/couchbase/search_options.rb', line 1210 def initialize(field) super() @field = field yield self if block_given? end |
Instance Attribute Details
#desc ⇒ Boolean
Returns if descending order should be applied.
1197 1198 1199 |
# File 'lib/couchbase/search_options.rb', line 1197 def desc @desc end |
#field ⇒ String (readonly)
Returns name of the field to sort by.
1194 1195 1196 |
# File 'lib/couchbase/search_options.rb', line 1194 def field @field end |
#missing ⇒ :first, :last
Returns where the documents with missing field should be placed.
1203 1204 1205 |
# File 'lib/couchbase/search_options.rb', line 1203 def missing @missing end |
#mode ⇒ :default, ...
1206 1207 1208 |
# File 'lib/couchbase/search_options.rb', line 1206 def mode @mode end |
#type ⇒ :auto, ...
1200 1201 1202 |
# File 'lib/couchbase/search_options.rb', line 1200 def type @type end |