Package org.bson
Class BsonInt64
java.lang.Object
org.bson.BsonValue
org.bson.BsonNumber
org.bson.BsonInt64
- All Implemented Interfaces:
Comparable<BsonInt64>
@Deprecated(since="2022-10-31")
public final class BsonInt64
extends BsonNumber
implements Comparable<BsonInt64>
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A representation of the BSON Int64 type.
-
Constructor Summary
ConstructorsConstructorDescriptionBsonInt64(long value) Deprecated.Construct a new instance with the given value. -
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.Deprecated.Returns the value of the specified number as aDecimal128, which may involve rounding.doubleDeprecated.Returns the value of the specified number as adouble, which may involve rounding.booleanDeprecated.Deprecated.Gets the BSON type of this value.longgetValue()Deprecated.Gets the long value.inthashCode()Deprecated.intintValue()Deprecated.Returns the value of the specified number as anint, which may involve rounding or truncation.longDeprecated.Returns the value of the specified number as anlong, which may involve rounding or truncation.toString()Deprecated.Methods inherited from class org.bson.BsonValue
asArray, asBinary, asBoolean, asDateTime, asDBPointer, asDecimal128, asDocument, asDouble, asInt32, asInt64, asJavaScript, asJavaScriptWithScope, asNumber, asObjectId, asRegularExpression, asString, asSymbol, asTimestamp, isArray, isBinary, isBoolean, isDateTime, isDBPointer, isDecimal128, isDocument, isDouble, isInt32, isInt64, isJavaScript, isJavaScriptWithScope, isNull, isNumber, isObjectId, isRegularExpression, isString, isSymbol, isTimestamp
-
Constructor Details
-
BsonInt64
public BsonInt64(long value) Deprecated.Construct a new instance with the given value.- Parameters:
value- the value
-
-
Method Details
-
compareTo
Deprecated.- Specified by:
compareToin interfaceComparable<BsonInt64>
-
getBsonType
Deprecated.Description copied from class:BsonValueGets the BSON type of this value.- Specified by:
getBsonTypein classBsonValue- Returns:
- the BSON type, which may not be null (but may be BSONType.NULL)
-
getValue
public long getValue()Deprecated.Gets the long value.- Returns:
- the value
-
intValue
public int intValue()Deprecated.Description copied from class:BsonNumberReturns the value of the specified number as anint, which may involve rounding or truncation.- Specified by:
intValuein classBsonNumber- Returns:
- the numeric value represented by this object after conversion to type
int.
-
longValue
public long longValue()Deprecated.Description copied from class:BsonNumberReturns the value of the specified number as anlong, which may involve rounding or truncation.- Specified by:
longValuein classBsonNumber- Returns:
- the numeric value represented by this object after conversion to type
long.
-
doubleValue
public double doubleValue()Deprecated.Description copied from class:BsonNumberReturns the value of the specified number as adouble, which may involve rounding.- Specified by:
doubleValuein classBsonNumber- Returns:
- the numeric value represented by this object after conversion to type
double.
-
decimal128Value
Deprecated.Description copied from class:BsonNumberReturns the value of the specified number as aDecimal128, which may involve rounding.- Specified by:
decimal128Valuein classBsonNumber- Returns:
- the numeric value represented by this object after conversion to type
Decimal128.
-
equals
Deprecated. -
hashCode
public int hashCode()Deprecated. -
toString
Deprecated.
-