com.kennycason.kumo.font.FontWeight Maven / Gradle / Ivy
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