Files
codeql/java/ql/test/stubs/javafx-web/javafx/scene/text/FontWeight.java
Tony Torralba 393a0759db More stubs
2023-03-10 12:35:13 +01:00

14 lines
422 B
Java
Generated

// 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; }
}