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

com.hfg.printer.zpl2.ZplTextJustification Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.printer.zpl2;


public enum ZplTextJustification
{
    left("L"),
    center("C"),
    right("R"),
    justified("J");

    private String mCode;

    //###########################################################################
    // CONSTRUCTORS
    //###########################################################################

    private ZplTextJustification(String inCode)
    {
        mCode = inCode;
    }

    //###########################################################################
    // PUBLIC METHODS
    //###########################################################################

    //--------------------------------------------------------------------------
    public String getCode()
    {
        return mCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy