Class sap.ui.model.odata.type.DateModule: sap/ui/model/odata/type/Date
This class represents the OData V4 primitive type Edm.Date
.
In sap.ui.model.odata.v4.ODataModel this type is represented as a string
in the format "yyyy-mm-dd".
Since: 1.37.0.
Constructor Summary
new sap.ui.model.odata.type.Date(oFormatOptions?, oConstraints?)Constructor for an OData primitive type
Edm.Date
.Method Summary
sap.ui.model.odata.type.Date.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.ui.model.odata.type.Date with name
sClassName
and enriches it with the information contained in oClassInfo
.sap.ui.model.odata.type.Date.getMetadata()Returns a metadata object for class sap.ui.model.odata.type.Date.
validateValue(sValue)Validates whether the given value in model representation is valid and meets the given 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.Date(oFormatOptions?, oConstraints?)
Constructor for an OData primitive type
Edm.Date
. Parameters:
{object} | oFormatOptions? | format options as defined in sap.ui.core.format.DateFormat |
{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.Date.extend(sClassName, oClassInfo?, FNMetaImpl?): function
Creates a new subclass of class sap.ui.model.odata.type.Date 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.Date.getMetadata(): sap.ui.base.Metadata
Returns a metadata object for class sap.ui.model.odata.type.Date.
Returns:
{sap.ui.base.Metadata} | Metadata object describing this class |
formatValue(sValue, sTargetType): string
Formats the given value to the given target type.
Parameters:
{string} | sValue | the value to be formatted |
{string} | sTargetType | the target type; may be "any" or "string". See sap.ui.model.odata.type for more information. |
Exceptions:
{sap.ui.model.FormatException} | if sTargetType is unsupported |
Returns:
{string} | the formatted output value in the target type; undefined or null are formatted to null |
parseValue(sValue, sSourceType): string
Parses the given value to a date.
Parameters:
{string} | sValue | the value to be parsed, maps "" to null |
{string} | sSourceType | the source type (the expected type of sValue ); must be "string" See sap.ui.model.odata.type for more information. |
Exceptions:
{sap.ui.model.ParseException} | if sSourceType is unsupported |
Returns:
{string} | the parsed value |
validateValue(sValue): void
Validates whether the given value in model representation is valid and meets the given constraints.
Parameters:
{string} | sValue | the value to be validated |
Exceptions:
{sap.ui.model.ValidateException} | if the value is not valid |