Class PrimitiveValueImpl

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object get()
      Gets the feature value as a Java object.
      float toFloat()
      Gets this value as a float.
      int toInt()
      Gets this value as an integer.
      java.lang.String toString()
      Gets this value as a string.
      • Methods inherited from class java.lang.Object

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

      • PrimitiveValueImpl

        public PrimitiveValueImpl​(java.lang.String aValue)
      • PrimitiveValueImpl

        public PrimitiveValueImpl​(int aValue)
      • PrimitiveValueImpl

        public PrimitiveValueImpl​(float aValue)
    • Method Detail

      • toString

        public java.lang.String toString()
        Description copied from interface: PrimitiveValue
        Gets this value as a string.
        Specified by:
        toString in interface PrimitiveValue
        Overrides:
        toString in class java.lang.Object
        Returns:
        string value
      • toInt

        public int toInt()
        Description copied from interface: PrimitiveValue
        Gets this value as an integer.
        Specified by:
        toInt in interface PrimitiveValue
        Returns:
        integer value, 0 if a non-integer
      • toFloat

        public float toFloat()
        Description copied from interface: PrimitiveValue
        Gets this value as a float.
        Specified by:
        toFloat in interface PrimitiveValue
        Returns:
        float value, 0 if a non-number.
      • get

        public java.lang.Object get()
        Description copied from interface: FeatureValue
        Gets the feature value as a Java object.
        Specified by:
        get in interface FeatureValue
        Returns:
        the feature value.