Interface IFilter

Hierarchy

Index

Properties

Methods

Properties

optional public alias?: Array<string>

[Config Option] (String[])

optional public alternateClassName?: any

[Config Option] (String/String[])

optional public anyMatch?: boolean

[Config Option] (Boolean)

optional public caseSensitive?: boolean

[Config Option] (Boolean)

optional public config?: any

[Config Option] (Object)

optional public exactMatch?: boolean

[Config Option] (Boolean)

optional public extend?: string

[Config Option] (String)

optional public filterFn?: any

[Config Option] (Function)

optional public id?: string

[Config Option] (String)

optional public inheritableStatics?: any

[Config Option] (Object)

optional public mixins?: any

[Config Option] (Object)

optional public platformConfig?: any

[Config Option] (Object)

optional public property?: string

[Config Option] (String)

optional public root?: string

[Config Option] (String)

optional public scope?: any

[Config Option] (Object)

optional public self?: IClass

[Property] (Ext.Class)

optional public singleton?: boolean

[Config Option] (Boolean)

optional public statics?: any

[Config Option] (Object)

optional public uses?: Array<string>

[Config Option] (String[])

optional public value?: any

[Config Option] (RegExp/Mixed)

Methods

optional public callOverridden(args?: any): any

[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)

Returns

any

Object Returns the result of calling the overridden method

optional public callParent(args?: any): any

[Method] Call the parent method of the current method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)

Returns

any

Object Returns the result of calling the parent method

optional public callSuper(args?: any): any

[Method] This method is used by an override to call the superclass method but bypass any overridden method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)

Returns

any

Object Returns the result of calling the superclass method

optional public destroy()

[Method]

optional public getAnyMatch(): boolean

[Method] Returns the value of anyMatch

Returns

boolean

Boolean

optional public getCaseSensitive(): boolean

[Method] Returns the value of caseSensitive

Returns

boolean

Boolean

optional public getExactMatch(): boolean

[Method] Returns the value of exactMatch

Returns

boolean

Boolean

optional public getFilterFn(): any

[Method] Returns the value of filterFn

Returns

any

Function

optional public getId(): string

[Method] Returns the value of id

Returns

string

String

optional public getInitialConfig(name?: string): any

[Method] Returns the initial configuration passed to constructor

Parameters

  • name?: string optional

    String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.

Returns

any

Object/Mixed

optional public getProperty(): string

[Method] Returns the value of property

Returns

string

String

optional public getRoot(): string

[Method] Returns the value of root

Returns

string

String

optional public getScope(): any

[Method] Returns the value of scope

Returns

any

Object

optional public getValue(): any

[Method] Returns the value of value

Returns

any

RegExp/Mixed

optional public initConfig(instanceConfig?: any): any

[Method] Initialize configuration for this class

Parameters

  • instanceConfig?: any optional

    Object

Returns

any

Object mixins The mixin prototypes as key - value pairs

optional public setAnyMatch(anyMatch?: boolean)

[Method] Sets the value of anyMatch

Parameters

  • anyMatch?: boolean optional

    Boolean

optional public setCaseSensitive(caseSensitive?: boolean)

[Method] Sets the value of caseSensitive

Parameters

  • caseSensitive?: boolean optional

    Boolean

optional public setExactMatch(exactMatch?: boolean)

[Method] Sets the value of exactMatch

Parameters

  • exactMatch?: boolean optional

    Boolean

optional public setFilterFn(filterFn?: any)

[Method] Sets the value of filterFn

Parameters

  • filterFn?: any optional

    Function

optional public setId(id?: string)

[Method] Sets the value of id

Parameters

  • id?: string optional

    String

optional public setProperty(property?: string)

[Method] Sets the value of property

Parameters

  • property?: string optional

    String

optional public setRoot(root?: string)

[Method] Sets the value of root

Parameters

  • root?: string optional

    String

optional public setScope(scope?: any)

[Method] Sets the value of scope

Parameters

  • scope?: any optional

    Object

optional public setValue(value?: any)

[Method] Sets the value of value

Parameters

  • value?: any optional

    RegExp/Mixed