org.mapfish.print.map.geotools.grid.FontStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of print-lib Show documentation
Show all versions of print-lib Show documentation
Library for generating PDFs and images from online webmapping services
package org.mapfish.print.map.geotools.grid;
import java.awt.Font;
/**
* Enumeration of all the allowed font styles.
*/
public enum FontStyle {
/**
* The plain style.
*/
PLAIN(Font.PLAIN),
/**
* The bold style.
*/
BOLD(Font.BOLD),
/**
* The italic style.
*/
ITALIC(Font.ITALIC);
final int styleId;
FontStyle(final int styleId) {
this.styleId = styleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy