mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
13 lines
372 B
Java
13 lines
372 B
Java
|
package com.google.zxing;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface Reader {
|
||
|
Result decode(BinaryBitmap binaryBitmap) throws NotFoundException, ChecksumException, FormatException;
|
||
|
|
||
|
Result decode(BinaryBitmap binaryBitmap, Map<DecodeHintType, ?> map) throws NotFoundException, ChecksumException, FormatException;
|
||
|
|
||
|
void reset();
|
||
|
}
|