com.google.zxing.client.result.ExpandedProductParsedResult Java Examples
The following examples show how to use
com.google.zxing.client.result.ExpandedProductParsedResult.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProductResultHandler.java From ZXing-Standalone-library with Apache License 2.0 | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }
Example #2
Source File: ProductResultHandler.java From analyzer-of-android-for-Apache-Weex with Apache License 2.0 | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }
Example #3
Source File: ProductResultHandler.java From weex with Apache License 2.0 | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }
Example #4
Source File: ProductResultHandler.java From Study_Android_Demo with Apache License 2.0 | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }
Example #5
Source File: ProductResultHandler.java From barcodescanner-lib-aar with MIT License | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }
Example #6
Source File: ProductResultHandler.java From zxingfragmentlib with Apache License 2.0 | 5 votes |
private static String getProductIDFromResult(ParsedResult rawResult) { if (rawResult instanceof ProductParsedResult) { return ((ProductParsedResult) rawResult).getNormalizedProductID(); } if (rawResult instanceof ExpandedProductParsedResult) { return ((ExpandedProductParsedResult) rawResult).getRawText(); } throw new IllegalArgumentException(rawResult.getClass().toString()); }