MultipleFilterCollection
Contents
[
Hide
]MultipleFilterCollection class
Represents the multiple filter collection.
class MultipleFilterCollection;
Constructors
Name | Description |
---|---|
constructor() | Constructs one new instance. |
constructor(Object) | Constructs from an Object convertible to this. |
Methods
Method | Description |
---|---|
get(number) | DateTimeGroupItem or a simple object. |
getMatchBlank() | Indicates whether to filter by blank. |
setMatchBlank(boolean) | Indicates whether to filter by blank. |
add(string) | Adds string filter. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
toObject() | Gets the Object. |
constructor()
Constructs one 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)
DateTimeGroupItem or a simple object.
get(index: number) : object;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number |
getMatchBlank()
Indicates whether to filter by blank.
getMatchBlank() : boolean;
setMatchBlank(boolean)
Indicates whether to filter by blank.
setMatchBlank(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
add(string)
Adds string filter.
add(filter: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
filter | string | The filter data. |
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