1 /*------------------------------------------------------------------------
2  *  Modifier
3  *
4  *  Copyright 2010 (c) Jeff Brown <spadix@users.sourceforge.net>
5  *
6  *  This file is part of the ZBar Bar Code Reader.
7  *
8  *  The ZBar Bar Code Reader is free software; you can redistribute it
9  *  and/or modify it under the terms of the GNU Lesser Public License as
10  *  published by the Free Software Foundation; either version 2.1 of
11  *  the License, or (at your option) any later version.
12  *
13  *  The ZBar Bar Code Reader is distributed in the hope that it will be
14  *  useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15  *  of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU Lesser Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser Public License
19  *  along with the ZBar Bar Code Reader; if not, write to the Free
20  *  Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  *  Boston, MA  02110-1301  USA
22  *
23  *  http://sourceforge.net/projects/zbar
24  *------------------------------------------------------------------------*/
25 
26 package net.sourceforge.zbar;
27 
28 /** Decoder symbology modifiers.
29  */
30 public class Modifier
31 {
32     /** barcode tagged as GS1 (EAN.UCC) reserved
33      * (eg, FNC1 before first data character).
34      * data may be parsed as a sequence of GS1 AIs
35      */
36     public static final int GS1 = 0;
37 
38     /** barcode tagged as AIM reserved
39      * (eg, FNC1 after first character or digit pair)
40      */
41     public static final int AIM = 1;
42 }
43