CustomFilterCollection

CustomFilterCollection class

Represents the custom filters.

class CustomFilterCollection;

Constructors

ConstructorDescription
constructor()Constructs new instance.
constructor(Object)Constructs from an Object convertible to this.

Properties

PropertyTypeDescription
andbooleanIndicates whether the two criteria have an “and” relationship.

Methods

MethodDescription
get(number)Gets the custom filter in the specific index.
getAnd()@deprecated. Please use the ‘and’ property instead. Indicates whether the two criteria have an “and” relationship.
setAnd(boolean)@deprecated. Please use the ‘and’ property instead. Indicates whether the two criteria have an “and” relationship.
getCount()@deprecated. Please use the ‘count’ property instead. 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:

ParameterTypeDescription
objObjectThe object.

and

Indicates whether the two criteria have an “and” relationship.

and : boolean;

get(number)

Gets the custom filter in the specific index.

get(index: number) : CustomFilter;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

CustomFilter

getAnd()

@deprecated. Please use the ‘and’ property instead. Indicates whether the two criteria have an “and” relationship.

getAnd() : boolean;

setAnd(boolean)

@deprecated. Please use the ‘and’ property instead. Indicates whether the two criteria have an “and” relationship.

setAnd(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

getCount()

@deprecated. Please use the ‘count’ property instead. 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;