All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.krysalis.barcode4j.BarGroup Maven / Gradle / Ivy

Go to download

Barcode4J is a flexible generator for barcodes written in Java inclusive extensions to support Apache FOP 0.93 and later.

The newest version!
/*
 * Copyright 2002-2004 Jeremias Maerki.
 * 
 * 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.
 */
package org.krysalis.barcode4j;

import java.util.Map;

/**
 * Enumeration type for bar groups.
 * 
 * @author Jeremias Maerki
 * @version $Id: BarGroup.java,v 1.3 2004/10/02 14:53:22 jmaerki Exp $
 */
public class BarGroup {

    private static final Map MAP = new java.util.HashMap();

    /** Bar group is represents a start character */
    public static final BarGroup START_CHARACTER = new BarGroup("start-char", MAP);
    /** Bar group is represents a stop character */
    public static final BarGroup STOP_CHARACTER  = new BarGroup("stop-char", MAP);
    /** Bar group is represents a message character or a part of the message */
    public static final BarGroup MSG_CHARACTER   = new BarGroup("msg-char", MAP);
    /** Bar group is represents a UPC/EAN guard */
    public static final BarGroup UPC_EAN_GUARD   = new BarGroup("upc-ean-guard", MAP);
    /** Bar group is represents a UPC/EAN lead */
    public static final BarGroup UPC_EAN_LEAD    = new BarGroup("upc-ean-lead", MAP);
    /** Bar group is represents a UPC/EAN character group */
    public static final BarGroup UPC_EAN_GROUP   = new BarGroup("upc-ean-group", MAP);
    /** Bar group is represents a UPC/EAN check character */
    public static final BarGroup UPC_EAN_CHECK   = new BarGroup("upc-ean-check", MAP);
    /** Bar group is represents a UPC/EAN supplemental */
    public static final BarGroup UPC_EAN_SUPP    = new BarGroup("upc-ean-supp", MAP);

    private String name;
    
    /**
     * Creates a new BarGroup instance.
     * @param name name of the BarGroup
     * @param map Map to register the instance in.
     */
    protected BarGroup(String name, final Map map) {
        this.name = name;
        MAP.put(name, this);
    }
    
    /**
     * @return the name of the instance.
     */
    public String getName() {
        return this.name;
    }
    
    /**
     * Returns a BarGroup instance by name.
     * @param name the name of the desired BarGroup
     * @return the requested BarGroup instance
     */
    public static BarGroup byName(String name) {
        final BarGroup bg = (BarGroup)MAP.get(name);
        if (bg == null) {
            throw new IllegalArgumentException("Invalid BarGroup: " + name);
        }
        return bg;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy