Source code for cimpy.cgmes_v2_4_15.Float

from .Base import Base
from .CGMESProfile import Profile


[docs]class Float(Base): """ A floating point number. The range is unspecified and not limited. """ possibleProfileList = { "class": [Profile.DL.value, Profile.DY.value, Profile.EQ_BD.value, Profile.EQ.value, Profile.SV.value, Profile.SSH.value, ], } serializationProfile = {} recommendedClassProfile = Profile.EQ.value def __init__(self): pass def __str__(self): str = "class=Float\n" attributes = self.__dict__ for key in attributes.keys(): str = str + key + "={}\n".format(attributes[key]) return str