Display possible country origin info on product scan
[zxing.git] / core / src / com / google / zxing / ResultMetadataType.java
index 7e47b0e..33d69d9 100644 (file)
@@ -74,6 +74,12 @@ public final class ResultMetadataType {
    */
   public static final ResultMetadataType SUGGESTED_PRICE = new ResultMetadataType("SUGGESTED_PRICE");
 
+  /**
+   * For some products, the possible country of manufacture as a {@link String} denoting the
+   * ISO country code. Some map to multiple possible countries, like "US/CA".
+   */
+  public static final ResultMetadataType POSSIBLE_COUNTRY = new ResultMetadataType("POSSIBLE_COUNTRY");
+
   private final String name;
 
   private ResultMetadataType(String name) {