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