Package convex.core.data.prim
Class CVMDouble
java.lang.Object
convex.core.data.AObject
convex.core.data.ACell
convex.core.data.prim.APrimitive
convex.core.data.prim.ANumeric
convex.core.data.prim.CVMDouble
- All Implemented Interfaces:
IValidated,IWriteable,Comparable<ANumeric>
Class for CVM double floating-point values.
Follows the Java standard / IEEE 784 spec.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intstatic final CVMDoublestatic final CVMDoublestatic final CVMDoublestatic final CVMDoublestatic final CVMDoublestatic final CVMDoublestatic final CVMDoubleFields inherited from class convex.core.data.ACell
cachedRef, memorySize -
Method Summary
Modifier and TypeMethodDescriptionabs()Gets the absolute value of this number.Adds a second numeric value to this valueintstatic CVMDoublecreate(double value) Creates a CVMDouble.doubleintencode(byte[] bs, int pos) Writes this Cell's encoding to a byte array, including a tag byte which will be written first.intencodeRaw(byte[] bs, int pos) Writes this Cell's encoding to a byte array, excluding the tag byte.Gets the numeric value as a Long integer, or null if not a valid LongbooleanChecks for equality with another Cell.booleanintEstimate the encoded data size for this Cell.bytegetTag()Gets the tag byte for this cell.getType()Gets the most specific known runtime Type for this Cell.inthashCode()Gets the Java hashCode for this cell.booleanisZero()Check if this numeric value is equal to zerolongMultiplies a second numeric value with this valuenegate()Negates this numeric valueClass<?> Gets the numeric type that should be used as for calculationsstatic CVMDoubleParses a CVM Double value.booleanprint(BlobBuilder bb, long limit) Prints this Object to a readable String Representation.static CVMDoublestatic CVMDoubleread(double value) signum()Gets the signum of this numerical value.Subtracts a second numeric value to this valuetoCVMString(long limit) Returns the CVM String representation of this Cell.toDouble()Casts to a CVM Double value.Converts this numeric value to the nearest integertoLong()Casts to a CVM Long value.toString()Returns the Java String representation of this Cell.static CVMDoubleunsafeCreate(double value) voidValidates the local structure and invariants of this cell.Methods inherited from class convex.core.data.prim.APrimitive
calcMemorySize, getRef, getRefCount, isCanonical, isCVMValue, isDataValue, isEmbedded, toCanonical, updateRefsMethods inherited from class convex.core.data.ACell
attachMemorySize, attachRef, cachedEncoding, cachedHash, createEncoding, createRef, equals, genericEquals, getCanonical, getChildRefs, getEncoding, getEncodingLength, getHash, getMemorySize, getMemorySize, getRef, validateMethods inherited from class convex.core.data.AObject
attachEncoding, print, print
-
Field Details
-
ZERO
-
NEGATIVE_ZERO
-
ONE
-
MINUS_ONE
-
NaN
-
POSITIVE_INFINITY
-
NEGATIVE_INFINITY
-
MAX_ENCODING_LENGTH
public static final int MAX_ENCODING_LENGTH- See Also:
-
-
Method Details
-
create
Creates a CVMDouble. Forces NaN to be canonical instance.- Parameters:
value- Double value to wrap- Returns:
- CVMDouble value
-
unsafeCreate
-
getType
-
longValue
public long longValue()- Specified by:
longValuein classAPrimitive- Returns:
- Java long value representing this primitive CVM value
-
toLong
-
toDouble
-
signum
-
estimatedEncodingSize
public int estimatedEncodingSize()Description copied from interface:IWriteableEstimate the encoded data size for this Cell. Used for quickly sizing buffers. Implementations should try to return a size that is highly likely to contain the entire object when encoded, including the tag byte. Should not traverse soft Refs, i.e. must be usable on arbitrary partial data structures- Returns:
- The estimated size for the binary representation of this object.
-
validateCell
Description copied from class:ACellValidates the local structure and invariants of this cell. Called by validate() super implementation. Should validate directly contained data, but should not validate all other structure of this cell. In particular, should not traverse potentially missing child Refs.- Specified by:
validateCellin classACell- Throws:
InvalidDataException- If the Cell is invalid
-
encode
public int encode(byte[] bs, int pos) Description copied from class:ACellWrites this Cell's encoding to a byte array, including a tag byte which will be written first. Cell must be canonical, or else an error may occur.- Specified by:
encodein interfaceIWriteable- Specified by:
encodein classACell- Parameters:
bs- A byte array to which to write the encodingpos- The offset into the byte array- Returns:
- New position after writing
-
encodeRaw
public int encodeRaw(byte[] bs, int pos) Description copied from class:ACellWrites this Cell's encoding to a byte array, excluding the tag byte. -
toString
-
print
Description copied from class:AObjectPrints this Object to a readable String Representation. SECURITY: Must halt and return false in O(1) time when limit of printing is exceeded otherwise DoS attacks may be possible. -
numericType
Description copied from class:ANumericGets the numeric type that should be used as for calculations- Specified by:
numericTypein classANumeric- Returns:
- Double.class or Long.class, or null if not a numeric type
-
doubleValue
public double doubleValue()- Specified by:
doubleValuein classANumeric- Returns:
- Java double value representing this primitive CVM value
-
parse
Parses a CVM Double value.- Parameters:
s- String to parse- Returns:
- CVMDouble value
- Throws:
NumberFormatException- If number format is invalid
-
getTag
public byte getTag()Description copied from class:ACellGets the tag byte for this cell. The tag byte is always equal to the first byte of the Cell's canonical Encoding, and is sufficient to distinguish how to read the rest of the encoding. -
read
- Throws:
BadFormatException
-
read
- Throws:
BadFormatException
-
toCVMString
Description copied from class:ACellReturns the CVM String representation of this Cell. Normally, this is as printed, but may be different for some types. SHOULD return null in O(1) time if the length of the CVM String can be proved to exceed the limit. MUST complete in O(limit) time and space otherwise The String representation is intended to be a easy-to-read textual representation of the Cell's data content.- Overrides:
toCVMStringin classACell- Parameters:
limit- Limit of CVM String length in UTF-8 bytes- Returns:
- CVM String, or null if limit exceeded
-
equals
Description copied from class:ACellChecks for equality with another Cell. In general, Cells are considered equal if they have the same canonical representation, i.e. an identical encoding with the same hash value. Subclasses SHOULD override this if they have a more efficient equals implementation. MUST NOT require reads from Store. -
equals
-
hashCode
public int hashCode()Description copied from class:ACellGets the Java hashCode for this cell. Must be consistent with equals. Default is the hashCode of the Encoding blob, since this is consistent with encoding-based equality. However, different Types may provide more efficient hashcodes provided that the usual invariants are preserved -
abs
-
compareTo
-
ensureLong
Description copied from class:ANumericGets the numeric value as a Long integer, or null if not a valid Long- Specified by:
ensureLongin classANumeric- Returns:
- CVMLong value, or null
-
add
-
sub
-
negate
-
multiply
-
toInteger
-
isZero
-