Class sap.ui.model.odata.type.DoubleModule: sap/ui/model/odata/type/Double
This class represents the OData primitive type Edm.Double
.
In both sap.ui.model.odata.v2.ODataModel and sap.ui.model.odata.v4.ODataModel this type is represented as a number
.
Since: 1.27.0.
Constructor Summary
new sap.ui.model.odata.type.Double(oFormatOptions?, oConstraints?)Constructor for a primitive type
Edm.Double
.Method Summary
sap.ui.model.odata.type.Double.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.ui.model.odata.type.Double with name
sClassName
and enriches it with the information contained in oClassInfo
.sap.ui.model.odata.type.Double.getMetadata()Returns a metadata object for class sap.ui.model.odata.type.Double.
parseValue(vValue, sSourceType)Parses the given value, which is expected to be of the given type, to an Edm.Double in
number
representation.validateValue(fValue)Validates whether the given value in model representation is valid and meets the defined constraints.
Methods borrowed from class sap.ui.model.odata.type.ODataType
Methods borrowed from class sap.ui.base.Object
Constructor Detail
new sap.ui.model.odata.type.Double(oFormatOptions?, oConstraints?)
Constructor for a primitive type
Edm.Double
. Parameters:
{object} | oFormatOptions? | format options as defined in sap.ui.core.format.NumberFormat. In contrast to NumberFormat groupingEnabled defaults to true . |
{object} | oConstraints? | constraints; validateValue throws an error if any constraint is violated |
{boolean|string} | oConstraints.nullable?, Default: true | if true , the value null is accepted |
Method Detail
sap.ui.model.odata.type.Double.extend(sClassName, oClassInfo?, FNMetaImpl?): function
Creates a new subclass of class sap.ui.model.odata.type.Double with name
sClassName
and enriches it with the information contained in oClassInfo
. oClassInfo
might contain the same kind of information as described in sap.ui.model.odata.type.ODataType.extend.
Parameters:
{string} | sClassName | Name of the class being created |
{object} | oClassInfo? | Object literal with information about the class |
{function} | FNMetaImpl? | Constructor function for the metadata object; if not given, it defaults to sap.ui.core.ElementMetadata |
Returns:
{function} | Created class / constructor function |
sap.ui.model.odata.type.Double.getMetadata(): sap.ui.base.Metadata
Returns a metadata object for class sap.ui.model.odata.type.Double.
Returns:
{sap.ui.base.Metadata} | Metadata object describing this class |
formatValue(vValue, sTargetType): number|string
Formats the given value to the given target type. When formatting to "string", very large or very small values are formatted to the exponential format (e.g. "-3.14 E+15").
Parameters:
{number|string} | vValue | the value to be formatted, which is represented as a number in the model |
{string} | sTargetType | the target type; may be "any", "float", "int", "string". See sap.ui.model.odata.type for more information. |
Exceptions:
{sap.ui.model.FormatException} | if sTargetType is unsupported |
Returns:
{number|string} | the formatted output value in the target type; undefined or null are formatted to null |
parseValue(vValue, sSourceType): number
Parses the given value, which is expected to be of the given type, to an Edm.Double in
number
representation. Parameters:
{string|number} | vValue | the value to be parsed; the empty string and null are parsed to null ; note that there is no way to enter Infinity or NaN values |
{string} | sSourceType | the source type (the expected type of vValue ); may be "float", "int" or "string". See sap.ui.model.odata.type for more information. |
- Since:
- 1.29.0
Exceptions:
{sap.ui.model.ParseException} | if sSourceType is unsupported or if the given string cannot be parsed to a Double |
Returns:
{number} | the parsed value |
validateValue(fValue): void
Validates whether the given value in model representation is valid and meets the defined constraints.
Parameters:
{number} | fValue | the value to be validated |
- Since:
- 1.29.0
Exceptions:
{sap.ui.model.ValidateException} | if the value is not valid |