Class: Couchbase::Cluster::SearchFacet::SearchFacetNumericRange

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb
more...

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(field) {|_self| ... } ⇒ SearchFacetNumericRange

Returns a new instance of SearchFacetNumericRange.

Parameters:

  • field (String)

    name of the field

Yields:

  • (_self)

Yield Parameters:

[View source]

1241
1242
1243
1244
1245
# File 'lib/couchbase/search_options.rb', line 1241

def initialize(field)
  @field = field
  @ranges = []
  yield self if block_given?
end

Instance Attribute Details

#fieldString (readonly)

Returns:

  • (String)

1235
1236
1237
# File 'lib/couchbase/search_options.rb', line 1235

def field
  @field
end

#sizeInteger

Returns:

  • (Integer)

1238
1239
1240
# File 'lib/couchbase/search_options.rb', line 1238

def size
  @size
end

Instance Method Details

#add(name, min, max) ⇒ Object

Parameters:

  • name (String)

    the name of the range

  • min (Integer, Float, nil)

    lower bound of the range (pass nil if there is no lower bound)

  • max (Integer, Float, nil)

    upper bound of the range (pass nil if there is no upper bound)

[View source]

1250
1251
1252
# File 'lib/couchbase/search_options.rb', line 1250

def add(name, min, max)
  @ranges.append({name: name, min: min, max: max})
end