Support SMTP URLs
[zxing.git] / core / src / com / google / zxing / client / result / ParsedResultType.java
index 4106671..92c81cb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 ZXing authors
+ * Copyright 2010 ZXing authors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,13 +20,13 @@ package com.google.zxing.client.result;
  * Represents the type of data encoded by a barcode -- from plain text, to a
  * URI, to an e-mail address, etc.
  *
- * @author srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
 public final class ParsedResultType {
 
   public static final ParsedResultType ADDRESSBOOK = new ParsedResultType("ADDRESSBOOK");
   public static final ParsedResultType EMAIL_ADDRESS = new ParsedResultType("EMAIL_ADDRESS");
-  public static final ParsedResultType UPC = new ParsedResultType("UPC");
+  public static final ParsedResultType PRODUCT = new ParsedResultType("PRODUCT");
   public static final ParsedResultType URI = new ParsedResultType("URI");
   public static final ParsedResultType TEXT = new ParsedResultType("TEXT");
   public static final ParsedResultType ANDROID_INTENT = new ParsedResultType("ANDROID_INTENT");
@@ -34,6 +34,7 @@ public final class ParsedResultType {
   public static final ParsedResultType TEL = new ParsedResultType("TEL");
   public static final ParsedResultType SMS = new ParsedResultType("SMS");
   public static final ParsedResultType CALENDAR = new ParsedResultType("CALENDAR");
+  public static final ParsedResultType WIFI = new ParsedResultType("WIFI");
   // "optional" types
   public static final ParsedResultType NDEF_SMART_POSTER = new ParsedResultType("NDEF_SMART_POSTER");
   public static final ParsedResultType MOBILETAG_RICH_WEB = new ParsedResultType("MOBILETAG_RICH_WEB");