CustomFilterCollection
Contents
[
Hide
]CustomFilterCollection class
Represents the custom filters.
class CustomFilterCollection;
Constructors
Name | Description |
---|---|
constructor() | Constructs new instance. |
constructor(Object) | Constructs from an Object convertible to this. |
Methods
Method | Description |
---|---|
get(number) | Gets the custom filter in the specific index. |
getAnd() | Indicates whether the two criteria have an “and” relationship. |
setAnd(boolean) | Indicates whether the two criteria have an “and” relationship. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
toObject() | Gets the Object. |
constructor()
Constructs new instance.
constructor();
constructor(Object)
Constructs from an Object convertible to this.
constructor(obj: Object);
Parameters:
Parameter | Type | Description |
---|---|---|
obj | Object | The object. |
get(number)
Gets the custom filter in the specific index.
get(index: number) : CustomFilter;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The index. |
Returns
getAnd()
Indicates whether the two criteria have an “and” relationship.
getAnd() : boolean;
setAnd(boolean)
Indicates whether the two criteria have an “and” relationship.
setAnd(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;
toObject()
Gets the Object.
toObject() : Object;
Returns