basic pdf template lib
This commit is contained in:
26
pdf/src/main/java/de/muehlencord/shared/pdf/PaperSize.java
Normal file
26
pdf/src/main/java/de/muehlencord/shared/pdf/PaperSize.java
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package de.muehlencord.shared.pdf;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author jomu
|
||||||
|
*/
|
||||||
|
public enum PaperSize {
|
||||||
|
|
||||||
|
A4("A4");
|
||||||
|
|
||||||
|
private String label;
|
||||||
|
|
||||||
|
private PaperSize(String label) {
|
||||||
|
this.label = label;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLabel() {
|
||||||
|
return label;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user