org.hisrc.jsonix.Jsonix.Schema.XSD.Decimal.js Maven / Gradle / Ivy
Jsonix.Schema.XSD.Decimal = Jsonix.Class(Jsonix.Schema.XSD.AnySimpleType, {
name : 'Decimal',
typeName : Jsonix.Schema.XSD.qname('decimal'),
print : function(value, context, output, scope) {
Jsonix.Util.Ensure.ensureNumber(value);
var text = String(value);
return text;
},
parse : function(text, context, input, scope) {
Jsonix.Util.Ensure.ensureString(text);
var value = Number(text);
Jsonix.Util.Ensure.ensureNumber(value);
return value;
},
isInstance : function(value, context, scope) {
return Jsonix.Util.Type.isNumber(value);
},
CLASS_NAME : 'Jsonix.Schema.XSD.Decimal'
});
Jsonix.Schema.XSD.Decimal.INSTANCE = new Jsonix.Schema.XSD.Decimal();
Jsonix.Schema.XSD.Decimal.INSTANCE.LIST = new Jsonix.Schema.XSD.List(Jsonix.Schema.XSD.Decimal.INSTANCE);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy