CustomFilter
Contents
[
Hide
]CustomFilter class
Represents the custom filter.
class CustomFilter;
Methods
Method | Description |
---|---|
getFilterOperatorType() | Gets and sets the filter operator type. |
setFilterOperatorType(FilterOperatorType) | Gets and sets the filter operator type. |
getCriteria() | Gets and sets the criteria. |
setCriteria(object) | Gets and sets the criteria. |
setCriteria(FilterOperatorType, object) | Sets the filter criteria. |
isNull() | Checks whether the implementation object is null. |
getFilterOperatorType()
Gets and sets the filter operator type.
getFilterOperatorType() : FilterOperatorType;
Returns
setFilterOperatorType(FilterOperatorType)
Gets and sets the filter operator type.
setFilterOperatorType(value: FilterOperatorType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | FilterOperatorType | The value to set. |
getCriteria()
Gets and sets the criteria.
getCriteria() : object;
setCriteria(object)
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;