26 package jau.direct_bt;
33 private final int hashValue;
35 static int compHash(
final String a,
final String b) {
38 return ((hash << 5) - hash) + b.hashCode();
40 static int compHash(
final int a,
final int b) {
42 final int hash = 31 + a;
43 return ((hash << 5) - hash) + b;
46 protected DBTObject(
final long nativeInstance,
final int hashValue)
48 super(nativeInstance);
49 this.hashValue = hashValue;
55 public abstract boolean equals(
final Object obj);
69 public synchronized void close() {
75 {
throw new UnsupportedOperationException(); }