/** * @class Ext.data.Types * @singleton * @deprecated 5.0 Please use {@link Ext.data.field.Field field types} instead. */ /** * @property {RegExp} [stripRe="/[\$,%]/g"] * A regular expression for stripping non-numeric characters from a numeric value. * This should be overridden for localization. */ /** * @property {Object} AUTO * This data type means that no conversion is applied to the raw data before it is placed into a Record. */ /** * @property {Object} STRING * This data type means that the raw data is converted into a String before it is placed into a Record. */ /** * @property {Object} INT * This data type means that the raw data is converted into an integer before it is placed into a Record. * * The synonym `INTEGER` is equivalent. */ /** * @property {Object} FLOAT * This data type means that the raw data is converted into a number before it is placed into a Record. * * The synonym `NUMBER` is equivalent. */ /** * @property {Object} BOOL * This data type means that the raw data is converted into a boolean before it is placed into * a Record. The string "true" and the number 1 are converted to boolean true. * * The synonym `BOOLEAN` is equivalent. */ /** * @property {Object} DATE * This data type means that the raw data is converted into a Date before it is placed into a Record. * The date format is specified in the constructor of the {@link Ext.data.Field} to which this type is * being applied. */ /** * @property {Object} BOOLEAN * This data type means that the raw data is converted into a boolean before it is placed into * a Record. The string "true" and the number 1 are converted to boolean `true`. * * The synonym `BOOL` is equivalent. */ /** * @property {Object} INTEGER * This data type means that the raw data is converted into an integer before it is placed into a Record. * * The synonym `INT` is equivalent. */ /** * @property {Object} NUMBER * This data type means that the raw data is converted into a number before it is placed into a Record. * * The synonym `FLOAT` is equivalent. */