Class NumericAttributeType

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      IAttributeValue<java.lang.Double> buildAttributeValue​(java.lang.Object value)
      Casts the value to the respective type and returns an attribute value with the creating attribute type as the referenced type.
      IAttributeValue<java.lang.Double> buildAttributeValue​(java.lang.String stringDescription)
      Builds an attribute value object from a string description.
      java.lang.String getStringDescriptionOfDomain()  
      boolean isValidValue​(java.lang.Double value)
      Validates whether a value conforms to this type.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NumericAttributeType

        public NumericAttributeType()
    • Method Detail

      • isValidValue

        public boolean isValidValue​(java.lang.Double value)
        Description copied from interface: IAttributeType
        Validates whether a value conforms to this type.
        Specified by:
        isValidValue in interface IAttributeType<java.lang.Double>
        Parameters:
        value - The value to validated.
        Returns:
        Returns true if the given value conforms
      • buildAttributeValue

        public IAttributeValue<java.lang.Double> buildAttributeValue​(java.lang.Object value)
        Description copied from interface: IAttributeType
        Casts the value to the respective type and returns an attribute value with the creating attribute type as the referenced type.
        Specified by:
        buildAttributeValue in interface IAttributeType<java.lang.Double>
        Parameters:
        value - The value of the attribute.
        Returns:
        An attribute value object holding the value of the attribute and referring to this attribute type.
      • buildAttributeValue

        public IAttributeValue<java.lang.Double> buildAttributeValue​(java.lang.String stringDescription)
        Description copied from interface: IAttributeType
        Builds an attribute value object from a string description. The attribute value references this attribute type.
        Specified by:
        buildAttributeValue in interface IAttributeType<java.lang.Double>
        Parameters:
        stringDescription - A String-format description of the attribute's value.
        Returns:
        The attribute value object holding an attribute value interpreting the string description and referring to this attribute type.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object