// Generated automatically from javafx.scene.text.FontWeight for testing purposes package javafx.scene.text; public enum FontWeight { BLACK, BOLD, EXTRA_BOLD, EXTRA_LIGHT, LIGHT, MEDIUM, NORMAL, SEMI_BOLD, THIN; private FontWeight() {} public int getWeight(){ return 0; } public static FontWeight findByName(String p0){ return null; } public static FontWeight findByWeight(int p0){ return null; } }