mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Add support for Android Intent URIs encoded in a barcode
git-svn-id: https://zxing.googlecode.com/svn/trunk@251 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
3ee4cb2b66
commit
7d3abc8896
|
@ -31,7 +31,7 @@ public abstract class ParsedReaderResult {
|
||||||
|
|
||||||
private final ParsedReaderResultType type;
|
private final ParsedReaderResultType type;
|
||||||
|
|
||||||
ParsedReaderResult(ParsedReaderResultType type) {
|
public ParsedReaderResult(ParsedReaderResultType type) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ public final class ParsedReaderResultType {
|
||||||
public static final ParsedReaderResultType UPC = new ParsedReaderResultType("UPC");
|
public static final ParsedReaderResultType UPC = new ParsedReaderResultType("UPC");
|
||||||
public static final ParsedReaderResultType URI = new ParsedReaderResultType("URI");
|
public static final ParsedReaderResultType URI = new ParsedReaderResultType("URI");
|
||||||
public static final ParsedReaderResultType TEXT = new ParsedReaderResultType("TEXT");
|
public static final ParsedReaderResultType TEXT = new ParsedReaderResultType("TEXT");
|
||||||
|
public static final ParsedReaderResultType ANDROID_INTENT = new ParsedReaderResultType("ANDROID_INTENT");
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue