Module MaterialFX

Class CornerRadiusFactory

java.lang.Object
io.github.palexdev.materialfx.factories.CornerRadiusFactory

public class CornerRadiusFactory extends Object
Convenience class to build CornerRadii objects.
  • Method Details

    • all

      public static CornerRadii all(double topRightBottomLeft)
    • none

      public static CornerRadii none()
    • top

      public static CornerRadii top(double topLeft)
    • right

      public static CornerRadii right(double topRight)
    • bottom

      public static CornerRadii bottom(double bottomRight)
    • left

      public static CornerRadii left(double bottomLeft)
    • of

      public static CornerRadii of(double topLeft, double topRight)
    • of

      public static CornerRadii of(double topLeft, double topRight, double bottomRight)
    • of

      public static CornerRadii of(double topLeft, double topRight, double bottomRight, double bottomLeft)