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

com.kennycason.kumo.font.FontWeight Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package com.kennycason.kumo.font;

import java.awt.*;

/**
 * Created by kenny on 7/11/14.
 */
public enum FontWeight {
    PLAIN(Font.PLAIN),
    BOLD(Font.BOLD),
    ITALIC(Font.ITALIC);

    private final int weight;

    FontWeight(final int weight) {
        this.weight = weight;
    }

    public int getWeight() {
        return weight;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy