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

org.mapfish.print.map.geotools.grid.FontStyle Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
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