what-the-bank/sources/net/sourceforge/zbar/Symbol.java

36 lines
644 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package net.sourceforge.zbar;
/* loaded from: classes6.dex */
public class Symbol {
private long peer;
public static native void init();
public native void destroy(long j);
public native String getData();
public native byte[] getDataBytes();
public native long next();
protected void finalize() {
synchronized (this) {
long j = this.peer;
if (j != 0) {
destroy(j);
this.peer = 0L;
}
}
}
public Symbol(long j) {
this.peer = j;
}
static {
System.loadLibrary("s4515e");
init();
}
}