2010-02-05 11:52:53 -08:00
|
|
|
/*
|
2013-01-18 12:14:03 -08:00
|
|
|
* Copyright 2007 ZXing authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2010-02-05 11:52:53 -08:00
|
|
|
namespace com.google.zxing
|
|
|
|
{
|
2013-01-18 12:14:03 -08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Enumerates barcode formats known to this package. Please keep alphabetized.
|
2010-02-05 11:52:53 -08:00
|
|
|
///
|
2013-01-18 12:14:03 -08:00
|
|
|
/// @author Sean Owen
|
2010-02-05 11:52:53 -08:00
|
|
|
/// </summary>
|
2013-01-18 12:14:03 -08:00
|
|
|
public enum BarcodeFormat
|
2010-02-05 11:52:53 -08:00
|
|
|
{
|
2013-01-18 12:14:03 -08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Aztec 2D barcode format. </summary>
|
|
|
|
AZTEC,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CODABAR 1D format. </summary>
|
|
|
|
CODABAR,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Code 39 1D format. </summary>
|
|
|
|
CODE_39,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Code 93 1D format. </summary>
|
|
|
|
CODE_93,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Code 128 1D format. </summary>
|
|
|
|
CODE_128,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Data Matrix 2D barcode format. </summary>
|
|
|
|
DATA_MATRIX,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// EAN-8 1D format. </summary>
|
|
|
|
EAN_8,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// EAN-13 1D format. </summary>
|
|
|
|
EAN_13,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// ITF (Interleaved Two of Five) 1D format. </summary>
|
|
|
|
ITF,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// MaxiCode 2D barcode format. </summary>
|
|
|
|
MAXICODE,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// PDF417 format. </summary>
|
|
|
|
PDF_417,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// QR Code 2D barcode format. </summary>
|
|
|
|
QR_CODE,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RSS 14 </summary>
|
|
|
|
RSS_14,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// RSS EXPANDED </summary>
|
|
|
|
RSS_EXPANDED,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// UPC-A 1D format. </summary>
|
|
|
|
UPC_A,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// UPC-E 1D format. </summary>
|
|
|
|
UPC_E,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// UPC/EAN extension format. Not a stand-alone format. </summary>
|
|
|
|
UPC_EAN_EXTENSION
|
|
|
|
|
2010-02-05 11:52:53 -08:00
|
|
|
}
|
2013-01-18 12:14:03 -08:00
|
|
|
|
2010-02-05 11:52:53 -08:00
|
|
|
}
|