Extends
- AbstractBuilder
Methods
(static) bt(begin, end) → {string}
Builds a "between" filter string.
Parameters:
Name | Type | Description |
---|---|---|
begin |
string | The beginning value. |
end |
string | The ending value. |
Returns:
The filter string.
- Type
- string
(static) eq(value) → {string}
Builds an "equals" filter string.
Parameters:
Name | Type | Description |
---|---|---|
value |
string | The value to compare. |
Returns:
The filter string.
- Type
- string
(static) ge(value) → {string}
Builds a "greater than or equals" filter string.
Parameters:
Name | Type | Description |
---|---|---|
value |
string | The value to compare. |
Returns:
The filter string.
- Type
- string
(static) getFilterParams(harmonizedFilters) → {Object}
Retrieves the filter parameters based on the harmonized filters.
Parameters:
Name | Type | Description |
---|---|---|
harmonizedFilters |
Object | The harmonized filters. |
Returns:
The filter parameters.
- Type
- Object
(static) le(value) → {string}
Builds a "less than or equals" filter string.
Parameters:
Name | Type | Description |
---|---|---|
value |
string | The value to compare. |
Returns:
The filter string.
- Type
- string
(static) or(filters) → {string}
Builds an "or" filter string.
Parameters:
Name | Type | Description |
---|---|---|
filters |
Array | The filters to combine. |
Returns:
The filter string.
- Type
- string