![JAR search and dependency download from the Maven repository](/logo.png)
fr.w3blog.zpl.constant.ZebraRotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zebra-zpl Show documentation
Show all versions of zebra-zpl Show documentation
Java Api for Zepra Zpl generator
package fr.w3blog.zpl.constant;
public enum ZebraRotation {
NORMAL("N"), ROTATE_90("R"), INVERTED("I"), READ_FROM_BOTTOM("B");
String letter;
private ZebraRotation(String letter) {
this.letter = letter;
}
/**
* @return the letter
*/
public String getLetter() {
return letter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy