Page last modified 08:48, 29 May 2018 by villes

.toReal()

    Table of contents

    Description of the method

     

    Description: .toReal() method returns a real value converted from the given value.
    Available for: string
    Parameters: -
    Return type: real

     

    Example

    Context: TransactionType1
    OCL: self.Id.toReal() = 100.01
    Description: The example rule tries to convert the value of <Id> to a real number and then compares it to the number 100,01. If <Id> is convertable and matches 100,01, true will be returned.


    The XML snippet below would pass this check.

    <Id>100.01</Id>

    The other snippet below however would not pass this check. 

    <Id>101.00</Id>

    Menu