Package org.bson

Class BsonInt64

All Implemented Interfaces:
Comparable<BsonInt64>

public final class BsonInt64 extends BsonNumber implements Comparable<BsonInt64>
A representation of the BSON Int64 type.
  • Constructor Details

    • BsonInt64

      public BsonInt64(long value)
      Construct a new instance with the given value.
      Parameters:
      value - the value
  • Method Details

    • compareTo

      public int compareTo(BsonInt64 o)
      Specified by:
      compareTo in interface Comparable<BsonInt64>
    • getBsonType

      public BsonType getBsonType()
      Description copied from class: BsonValue
      Gets the BSON type of this value.
      Specified by:
      getBsonType in class BsonValue
      Returns:
      the BSON type, which may not be null (but may be BSONType.NULL)
    • getValue

      public long getValue()
      Gets the long value.
      Returns:
      the value
    • intValue

      public int intValue()
      Description copied from class: BsonNumber
      Returns the value of the specified number as an int, which may involve rounding or truncation.
      Specified by:
      intValue in class BsonNumber
      Returns:
      the numeric value represented by this object after conversion to type int.
    • longValue

      public long longValue()
      Description copied from class: BsonNumber
      Returns the value of the specified number as an long, which may involve rounding or truncation.
      Specified by:
      longValue in class BsonNumber
      Returns:
      the numeric value represented by this object after conversion to type long.
    • doubleValue

      public double doubleValue()
      Description copied from class: BsonNumber
      Returns the value of the specified number as a double, which may involve rounding.
      Specified by:
      doubleValue in class BsonNumber
      Returns:
      the numeric value represented by this object after conversion to type double.
    • decimal128Value

      public Decimal128 decimal128Value()
      Description copied from class: BsonNumber
      Returns the value of the specified number as a Decimal128, which may involve rounding.
      Specified by:
      decimal128Value in class BsonNumber
      Returns:
      the numeric value represented by this object after conversion to type Decimal128.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object