Enum TextShapeExporter.BorderStrategy

    • Method Detail

      • values

        public static TextShapeExporter.BorderStrategy[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TextShapeExporter.BorderStrategy c : TextShapeExporter.BorderStrategy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TextShapeExporter.BorderStrategy valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • horizontalLine

        public void horizontalLine​(java.io.PrintWriter pw,
                                   int width)
      • verticalLine

        public void verticalLine​(java.io.PrintWriter pw)
      • topLeftCorner

        public void topLeftCorner​(java.io.PrintWriter pw)
      • topRightCorner

        public void topRightCorner​(java.io.PrintWriter pw)
      • bottomLeftCorner

        public void bottomLeftCorner​(java.io.PrintWriter pw)
      • bottomRightCorner

        public void bottomRightCorner​(java.io.PrintWriter pw)
      • topDivider

        public void topDivider​(java.io.PrintWriter pw)
      • bottomDivider

        public void bottomDivider​(java.io.PrintWriter pw)
      • dividerVerticalLine

        public void dividerVerticalLine​(java.io.PrintWriter pw)
      • dividerHorizontalLine

        public void dividerHorizontalLine​(java.io.PrintWriter pw,
                                          int width)
      • dividerLeftEdge

        public void dividerLeftEdge​(java.io.PrintWriter pw)
      • dividerRightEdge

        public void dividerRightEdge​(java.io.PrintWriter pw)
      • dividerMiddle

        public void dividerMiddle​(java.io.PrintWriter pw)