Click or drag to resize

NumberUtils Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Miscellaneuos utility methods for numbers manipulation.
Inheritance Hierarchy
SystemObject
  Tangosol.UtilNumberUtils

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public abstract class NumberUtils

The NumberUtils type exposes the following members.

Constructors
  NameDescription
Protected methodNumberUtils
Initializes a new instance of the NumberUtils class
Top
Methods
  NameDescription
Public methodStatic memberChangeEndian(Int16)
Changes the endian of Int16 value.
Public methodStatic memberChangeEndian(Int32)
Changes the endian of Int32 value.
Public methodStatic memberChangeEndian(Int64)
Changes the endian of Int64 value.
Public methodStatic memberChangeEndian(UInt16)
Changes the endian of UInt16 value.
Public methodStatic memberChangeEndian(UInt32)
Changes the endian of UInt32 value.
Public methodStatic memberChangeEndian(UInt64)
Changes the endian of UInt64 value.
Public methodStatic memberDecimalToRawInt128
Converts Decimal to unscaled RawInt128 representation - compatible with Java BigInteger type.
Public methodStatic memberDoubleToInt64Bits
Converts Double to its bits, which are stored in a Int64 instance.
Public methodStatic memberEncodeDecimalBits
Encode RawInt128 value provided to array of int values representing Decimal unscaled value bits.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodStatic memberGetRandom
Obtain a Random object that can be used to get random values.
Public methodStatic memberGetScale
Gets a scale of Decimal value.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberGetUnscaledValue
Gets the unscaled value of Decimal value.
Public methodStatic memberInt32BitsToSingle
Converts bits which are stored in an Int32 instance into the Single object.
Public methodStatic memberInt64BitsToDouble
Converts bits which are stored in an Int64 instance into the Double object.
Public methodStatic memberIntToByteArray
Converts Int32 to its byte array.
Public methodStatic memberIsNumber
Returns true if specified object is one of .NET supported numeric types:
  • byte
  • short
  • int
  • long
  • double
  • float
  • decimal
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberParseHex(Char)
Return the integer value of a hexidecimal digit.
Public methodStatic memberParseHex(String)
Parse the passed string of hexidecimal characters into a binary value.
Public methodStatic memberSingleToInt32Bits
Converts Single to its bits, which are stored in a Int32 instance.
Public methodStatic memberToCrc(Byte)
Calculate a CRC32 value from a byte array.
Public methodStatic memberToCrc(Byte, Int32, Int32)
Calculate a CRC32 value from a portion of a byte array.
Public methodStatic memberToCrc(Byte, Int32, Int32, UInt32)
Continue to calculate a CRC32 value from a portion of a byte array.
Public methodStatic memberToHex
Convert a byte to the hex sequence of 2 hex digits.
Public methodStatic memberToHexEscape(Byte)
Convert a byte to a hex sequence of '0' + 'x' + 2 hex digits.
Public methodStatic memberToHexEscape(Byte)
Convert a byte array to a hex sequence of '0' + 'x' + 2 hex digits per byte.
Public methodStatic memberToHexEscape(Byte, Int32, Int32)
Convert a byte array to a hex sequence of '0' + 'x' + 2 hex digits per byte.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberURShift(Int32, Int32)
Performs an unsigned bitwise right shift with the specified number.
Public methodStatic memberURShift(Int64, Int32)
Performs an unsigned bitwise right shift with the specified number.
Top
See Also