Class LongValue

    • Constructor Detail

      • LongValue

        public LongValue​(long value)
        Creates a new instance.
        Parameters:
        value - the value to use
      • LongValue

        public LongValue​(String value)
        Creates a new instance from a String value
        Parameters:
        value - the value to use
        Throws:
        NumberFormatException - if the value is not a valid long
    • Method Detail

      • getValue

        public long getValue()
        Returns the long value of this object
        Returns:
        the long value
      • castAsDouble

        public double castAsDouble()
        Casts this long to a double, possibly with loss of information about magnitude, precision or sign.
        Overrides:
        castAsDouble in class FieldValue
        Returns:
        a double value
      • compareTo

        public int compareTo​(FieldValue other)
      • getDouble

        public double getDouble()
        Returns a Double value for this object.
        Overrides:
        getDouble in class FieldValue
        Returns:
        the double value
      • getNumber

        public BigDecimal getNumber()
        Returns a BigDecimal value for this object.
        Overrides:
        getNumber in class FieldValue
        Returns:
        the BigDecimal value
      • getInt

        public int getInt()
        Description copied from class: FieldValue
        Returns an integer value for the field if the value can be represented as a valid integer without loss of information. Numbers are coerced using Java rules and strings are parsed according to Java rules.
        Overrides:
        getInt in class FieldValue
        Returns:
        an integer value
      • getString

        public String getString()
        Description copied from class: FieldValue
        Returns a String value for the field. The String value cannot be created for MapValue, ArrayValue and BinaryValue. String values that are coerced use Java rules for representation.
        Overrides:
        getString in class FieldValue
        Returns:
        a String value
      • getTimestamp

        public Timestamp getTimestamp()
        Returns a Timestamp value for this object based on the Timestamp value of the long value
        Overrides:
        getTimestamp in class FieldValue
        Returns:
        the Timestamp value
      • toJson

        public String toJson​(JsonOptions options)
        Description copied from class: FieldValue
        Returns a JSON representation of the value using the options, if specified.
        Overrides:
        toJson in class FieldValue
        Parameters:
        options - configurable options used to affect the JSON output format of some data types. May be null.
        Returns:
        the JSON representation of this value.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object