C# Class Rubber.DSL.Filter.NumericRangeFilterBuilder

Inheritance: IFilterBuilder
Datei anzeigen Open project: stephenpope/Rubber

Public Methods

Method Description
Cache ( bool cache ) : NumericRangeFilterBuilder
CacheKey ( string cacheKey ) : NumericRangeFilterBuilder
FilterName ( string filterName ) : NumericRangeFilterBuilder
From ( double from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

From ( float from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

From ( int from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

From ( long from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

From ( object from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gt ( double from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gt ( float from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gt ( int from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gt ( long from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gt ( object from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gte ( double from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gte ( float from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gte ( int from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gte ( long from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

Gte ( object from ) : NumericRangeFilterBuilder

The from part of the filter query. Null indicates unbounded.

IncludeLower ( bool includeLower ) : NumericRangeFilterBuilder

Should the lower bound be included or not. Defaults to true.

IncludeUpper ( bool includeUpper ) : NumericRangeFilterBuilder

Should the upper bound be included or not. Defaults to true.

Lt ( double to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lt ( float to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lt ( int to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lt ( long to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lt ( object to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lte ( double to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lte ( float to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lte ( int to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lte ( long to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

Lte ( object to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

NumericRangeFilterBuilder ( string name ) : Newtonsoft.Json.Linq

A filter that restricts search results to values that are within the given range

To ( double to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

To ( float to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

To ( int to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

To ( long to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

To ( object to ) : NumericRangeFilterBuilder

The to part of the filter query. Null indicates unbounded.

ToJsonObject ( ) : object
ToString ( ) : string

Method Details

Cache() public method

public Cache ( bool cache ) : NumericRangeFilterBuilder
cache bool
return NumericRangeFilterBuilder

CacheKey() public method

public CacheKey ( string cacheKey ) : NumericRangeFilterBuilder
cacheKey string
return NumericRangeFilterBuilder

FilterName() public method

public FilterName ( string filterName ) : NumericRangeFilterBuilder
filterName string
return NumericRangeFilterBuilder

From() public method

The from part of the filter query. Null indicates unbounded.
public From ( double from ) : NumericRangeFilterBuilder
from double
return NumericRangeFilterBuilder

From() public method

The from part of the filter query. Null indicates unbounded.
public From ( float from ) : NumericRangeFilterBuilder
from float
return NumericRangeFilterBuilder

From() public method

The from part of the filter query. Null indicates unbounded.
public From ( int from ) : NumericRangeFilterBuilder
from int
return NumericRangeFilterBuilder

From() public method

The from part of the filter query. Null indicates unbounded.
public From ( long from ) : NumericRangeFilterBuilder
from long
return NumericRangeFilterBuilder

From() public method

The from part of the filter query. Null indicates unbounded.
public From ( object from ) : NumericRangeFilterBuilder
from object
return NumericRangeFilterBuilder

Gt() public method

The from part of the filter query. Null indicates unbounded.
public Gt ( double from ) : NumericRangeFilterBuilder
from double
return NumericRangeFilterBuilder

Gt() public method

The from part of the filter query. Null indicates unbounded.
public Gt ( float from ) : NumericRangeFilterBuilder
from float
return NumericRangeFilterBuilder

Gt() public method

The from part of the filter query. Null indicates unbounded.
public Gt ( int from ) : NumericRangeFilterBuilder
from int
return NumericRangeFilterBuilder

Gt() public method

The from part of the filter query. Null indicates unbounded.
public Gt ( long from ) : NumericRangeFilterBuilder
from long
return NumericRangeFilterBuilder

Gt() public method

The from part of the filter query. Null indicates unbounded.
public Gt ( object from ) : NumericRangeFilterBuilder
from object
return NumericRangeFilterBuilder

Gte() public method

The from part of the filter query. Null indicates unbounded.
public Gte ( double from ) : NumericRangeFilterBuilder
from double
return NumericRangeFilterBuilder

Gte() public method

The from part of the filter query. Null indicates unbounded.
public Gte ( float from ) : NumericRangeFilterBuilder
from float
return NumericRangeFilterBuilder

Gte() public method

The from part of the filter query. Null indicates unbounded.
public Gte ( int from ) : NumericRangeFilterBuilder
from int
return NumericRangeFilterBuilder

Gte() public method

The from part of the filter query. Null indicates unbounded.
public Gte ( long from ) : NumericRangeFilterBuilder
from long
return NumericRangeFilterBuilder

Gte() public method

The from part of the filter query. Null indicates unbounded.
public Gte ( object from ) : NumericRangeFilterBuilder
from object
return NumericRangeFilterBuilder

IncludeLower() public method

Should the lower bound be included or not. Defaults to true.
public IncludeLower ( bool includeLower ) : NumericRangeFilterBuilder
includeLower bool
return NumericRangeFilterBuilder

IncludeUpper() public method

Should the upper bound be included or not. Defaults to true.
public IncludeUpper ( bool includeUpper ) : NumericRangeFilterBuilder
includeUpper bool
return NumericRangeFilterBuilder

Lt() public method

The to part of the filter query. Null indicates unbounded.
public Lt ( double to ) : NumericRangeFilterBuilder
to double
return NumericRangeFilterBuilder

Lt() public method

The to part of the filter query. Null indicates unbounded.
public Lt ( float to ) : NumericRangeFilterBuilder
to float
return NumericRangeFilterBuilder

Lt() public method

The to part of the filter query. Null indicates unbounded.
public Lt ( int to ) : NumericRangeFilterBuilder
to int
return NumericRangeFilterBuilder

Lt() public method

The to part of the filter query. Null indicates unbounded.
public Lt ( long to ) : NumericRangeFilterBuilder
to long
return NumericRangeFilterBuilder

Lt() public method

The to part of the filter query. Null indicates unbounded.
public Lt ( object to ) : NumericRangeFilterBuilder
to object
return NumericRangeFilterBuilder

Lte() public method

The to part of the filter query. Null indicates unbounded.
public Lte ( double to ) : NumericRangeFilterBuilder
to double
return NumericRangeFilterBuilder

Lte() public method

The to part of the filter query. Null indicates unbounded.
public Lte ( float to ) : NumericRangeFilterBuilder
to float
return NumericRangeFilterBuilder

Lte() public method

The to part of the filter query. Null indicates unbounded.
public Lte ( int to ) : NumericRangeFilterBuilder
to int
return NumericRangeFilterBuilder

Lte() public method

The to part of the filter query. Null indicates unbounded.
public Lte ( long to ) : NumericRangeFilterBuilder
to long
return NumericRangeFilterBuilder

Lte() public method

The to part of the filter query. Null indicates unbounded.
public Lte ( object to ) : NumericRangeFilterBuilder
to object
return NumericRangeFilterBuilder

NumericRangeFilterBuilder() public method

A filter that restricts search results to values that are within the given range
public NumericRangeFilterBuilder ( string name ) : Newtonsoft.Json.Linq
name string
return Newtonsoft.Json.Linq

To() public method

The to part of the filter query. Null indicates unbounded.
public To ( double to ) : NumericRangeFilterBuilder
to double
return NumericRangeFilterBuilder

To() public method

The to part of the filter query. Null indicates unbounded.
public To ( float to ) : NumericRangeFilterBuilder
to float
return NumericRangeFilterBuilder

To() public method

The to part of the filter query. Null indicates unbounded.
public To ( int to ) : NumericRangeFilterBuilder
to int
return NumericRangeFilterBuilder

To() public method

The to part of the filter query. Null indicates unbounded.
public To ( long to ) : NumericRangeFilterBuilder
to long
return NumericRangeFilterBuilder

To() public method

The to part of the filter query. Null indicates unbounded.
public To ( object to ) : NumericRangeFilterBuilder
to object
return NumericRangeFilterBuilder

ToJsonObject() public method

public ToJsonObject ( ) : object
return object

ToString() public method

public ToString ( ) : string
return string