Another fix to UTF-8 / Shift_JIS guessing
[zxing.git] / core / src / com / google / zxing / BarcodeFormat.java
index d7a1c90..b0ffae8 100644 (file)
@@ -25,8 +25,20 @@ public final class BarcodeFormat {
 
   // No, we can't use an enum here. J2ME doesn't support it.
 
-  public static final BarcodeFormat UPC = new BarcodeFormat();
+  /**
+   * 1D barcode format family.
+   */
+  public static final BarcodeFormat ONED = new BarcodeFormat();
+  /**
+   * QR Code 2D barcode format
+   */
   public static final BarcodeFormat QR_CODE = new BarcodeFormat();
+  /**
+   * DataMatrix 2D barcode format
+   */
   public static final BarcodeFormat DATAMATRIX = new BarcodeFormat();
 
+  private BarcodeFormat() {
+  }
+
 }
\ No newline at end of file