Class FontStyle
- java.lang.Object
-
- com.github.weisj.jsvg.attributes.font.FontStyle
-
- Direct Known Subclasses:
FontStyle.Italic
,FontStyle.Normal
,FontStyle.Oblique
abstract class FontStyle extends java.lang.Object
This abstract class shouldn't be extended besides those constants.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
FontStyle.Italic
(package private) static class
FontStyle.Normal
(package private) static class
FontStyle.Oblique
-
Constructor Summary
Constructors Modifier Constructor Description private
FontStyle()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @NotNull FontStyle
italic()
static @NotNull FontStyle
normal()
static @NotNull FontStyle
oblique()
static @NotNull FontStyle
oblique(float angle)
@Nullable java.awt.geom.AffineTransform
transform()
-
-
-
Method Detail
-
transform
@Nullable public @Nullable java.awt.geom.AffineTransform transform()
-
normal
@NotNull public static @NotNull FontStyle normal()
-
italic
@NotNull public static @NotNull FontStyle italic()
-
oblique
@NotNull public static @NotNull FontStyle oblique()
-
oblique
@NotNull public static @NotNull FontStyle oblique(float angle)
-
-