# Class: com.pnfsoftware.jeb.util.base.LongLong

Custom implementation of Java's `longlong`, a signed 128\-bit integer.

## Field: hi
Type: `long`
Description: High 64 bits.

## Field: lo
Type: `long`
Description: Low 64 bits.

## Method: compareTo
- parameter: `o`, type: `com.pnfsoftware.jeb.util.base.LongLong`
- return type: `int`


## Method: compareUnsignedTo
- parameter: `o`, type: `com.pnfsoftware.jeb.util.base.LongLong`
- return type: `int`

Description: Compare two values as unsigned 128\-bit integers.
parameter: o: value to compare with
return: negative, zero, or positive if this value is respectively lower, equal, or greater

## Method: equals
- parameter: `obj`, type: `java.lang.Object`
- return type: `boolean`


## Method: hashCode
- return type: `int`


## Method: toString
- return type: `java.lang.String`


## Static Method: valueOf
- parameter: `lo`, type: `long`
- parameter: `hi`, type: `long`
- return type: `com.pnfsoftware.jeb.util.base.LongLong`

Description: Create a signed 128\-bit value from its low and high 64\-bit words.
parameter: lo: low 64 bits
parameter: hi: high 64 bits
return: a 128\-bit value

