Searched defs:SignedLongLong (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DSignedLongLong.java29 public class SignedLongLong implements Comparable<SignedLongLong> { class in inherits:Comparable
34 public SignedLongLong(long leastSigBits, long mostSigBits) { method in class:SignedLongLong
40 * Create a SignedLongLong from a Hex-String without "0x" prefix
45 public static SignedLongLong fromString(String value) throws UnsupportedEncodingException {
64 return new SignedLongLong(lsb, msb);
68 public int compareTo(SignedLongLong another) {
108 SignedLongLong other = (SignedLongLong) obj;

Completed in 82 milliseconds