Interface: AttributeFilterOperator

Oracle® JavaScript Extension Toolkit (JET)
16.0.0

F83701-01

Since:
  • 5.0.0
Module:
  • ojdataprovider

Note: This interface is deprecated since 7.0.0. Use alternative: AttributeFilter.

QuickNav

Fields

Description

The interface for AttributeFilterOperator


Usage

Signature:

interface AttributeFilterOperator<D>

Generic Parameters
ParameterDescription
DType of Data
Typescript Import Format
//To use this interface, import as below.
import {AttributeFilterOperator} from "ojs/ojdataprovider";

For additional information visit:


The interface for AttributeFilterOperator

Fields

(static) AttributeOperator :string

AttributeOperator enum

The operators are based on the filtering spec of the RFC 7644 SCIM protocol:
SCIM Filtering

Properties:
Name Type Default Description
$co string $co The entire operator value must be a substring of the attribute value for a match.
$eq string $eq The attribute and operator values must be identical for a match.
$ew string $ew The entire operator value must be a substring of the attribute value matching at the end of the attribute value. This criterion is satisfied if the two strings are identical.
$ge string $ge If the attribute value is greater than or equal to the operator value, there is a match.
$gt string $gt If the attribute value is greater than the operator value, there is a match.
$le string $le If the attribute value is less than or equal to the operator value, there is a match.
$lt string $lt If the attribute value is less than the operator value, there is a match.
$ne string $ne The attribute and operator values are not identical.
$pr string $pr If the attribute has a non-empty or non-null value, or if it contains a non-empty node for complex attributes, there is a match.
$regex string $regex If the attribute value satisfies the regular expression, there is a match.
$sw string $sw The entire operator value must be a substring of the attribute value, starting at the beginning of the attribute value. This criterion is satisfied if the two strings are identical.
Since:
  • 5.0.0

attribute :string

Attribute
Since:
  • 5.0.0

op :AttributeFilterOperator.AttributeOperator

Operator one of enum AttributeOperator {$co, $eq, $ew, $pr, $gt, $ge, $lt, $le, $ne, $regex, $sw}
Since:
  • 5.0.0

value :any

Value
Since:
  • 5.0.0

Methods

filter(data) : {Array}

Optional function which is used to locally filter the data.
Parameters:
Name Type Description
data Array The data to filter
Since:
  • 5.0.0
Inherited From:
Returns:

filtered data

Type
Array