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;