mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
14 lines
422 B
Java
Generated
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; }
|
|
}
|