CustomFilter
Contents
[
Hide
]CustomFilter class
Represents the custom filter.
class CustomFilter;
Properties
| Property | Type | Description |
|---|---|---|
| filterOperatorType | FilterOperatorType | Gets and sets the filter operator type. |
| criteria | Object | Gets and sets the criteria. |
Methods
| Method | Description |
|---|---|
| getFilterOperatorType() | @deprecated. Please use the ‘filterOperatorType’ property instead. Gets and sets the filter operator type. |
| setFilterOperatorType(FilterOperatorType) | @deprecated. Please use the ‘filterOperatorType’ property instead. Gets and sets the filter operator type. |
| getCriteria() | @deprecated. Please use the ‘criteria’ property instead. Gets and sets the criteria. |
| setCriteria(Object) | @deprecated. Please use the ‘criteria’ property instead. Gets and sets the criteria. |
| setCriteria(FilterOperatorType, Object) | Sets the filter criteria. |
| isNull() | Checks whether the implementation object is null. |
filterOperatorType
Gets and sets the filter operator type.
filterOperatorType : FilterOperatorType;
criteria
Gets and sets the criteria.
criteria : Object;
getFilterOperatorType()
@deprecated. Please use the ‘filterOperatorType’ property instead. Gets and sets the filter operator type.
getFilterOperatorType() : FilterOperatorType;
Returns
setFilterOperatorType(FilterOperatorType)
@deprecated. Please use the ‘filterOperatorType’ property instead. Gets and sets the filter operator type.
setFilterOperatorType(value: FilterOperatorType) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | FilterOperatorType | The value to set. |
getCriteria()
@deprecated. Please use the ‘criteria’ property instead. Gets and sets the criteria.
getCriteria() : Object;
setCriteria(Object)
@deprecated. Please use the ‘criteria’ property instead. Gets and sets the criteria.
setCriteria(value: Object) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | Object | The value to set. |
setCriteria(FilterOperatorType, Object)
Sets the filter criteria.
setCriteria(filterOperator: FilterOperatorType, criteria: Object) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| filterOperator | FilterOperatorType | filter operator type |
| criteria | Object | filter criteria value |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;