[Property] (Ext.Class)
[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)
any
Object Returns the result of calling the overridden method
[Method] Call the parent method of the current method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)
any
Object Returns the result of calling the parent method
[Method] This method is used by an override to call the superclass method but bypass any overridden method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)
any
Object Returns the result of calling the superclass method
[Method] Returns the correct Model name for a given string
String The word to classify
string
String The classified version of the word
[Method] Removes all registered pluralization rules
[Method] Removes all registered singularization rules
[Method]
[Method] Returns the initial configuration passed to constructor
String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.
any
Object/Mixed
[Method] Initialize configuration for this class
Object
any
Object mixins The mixin prototypes as key - value pairs
[Method] Returns true if the given word is transnumeral the word is its own singular and plural form e g
String The word to test
boolean
Boolean True if the word is transnumeral
[Method] Ordinalizes a given number by adding a prefix such as st nd rd or th based on the last digit of the number
Number The number to ordinalize
string
String The ordinalized number
[Method] Adds a new pluralization rule to the Inflector
RegExp The matcher regex
String The replacement string, which can reference matches from the matcher argument
[Method] Returns the pluralized form of a word e g
String The word to pluralize
string
String The pluralized form of the word
[Method] Adds a new singularization rule to the Inflector
RegExp The matcher regex
String The replacement string, which can reference matches from the matcher argument
[Method] Returns the singularized form of a word e g
String The word to singularize
string
String The singularized form of the word
[Method] Get the reference to the class from which this object was instantiated
Ext.Class