Uses of Enum Class
org.apache.poi.xwpf.usermodel.Borders

Packages that use Borders
Package
Description
 
  • Uses of Borders in org.apache.poi.xwpf.usermodel

    Methods in org.apache.poi.xwpf.usermodel that return Borders
    Modifier and Type
    Method
    Description
    XWPFParagraph.getBorderBetween()
    Specifies the border which shall be displayed between each paragraph in a set of paragraphs which have the same set of paragraph border settings.
    XWPFParagraph.getBorderBottom()
    Specifies the border which shall be displayed below a set of paragraphs which have the same set of paragraph border settings.
    XWPFParagraph.getBorderLeft()
    Specifies the border which shall be displayed on the left side of the page around the specified paragraph.
    XWPFParagraph.getBorderRight()
    Specifies the border which shall be displayed on the right side of the page around the specified paragraph.
    XWPFParagraph.getBorderTop()
    Specifies the border which shall be displayed above a set of paragraphs which have the same set of paragraph border settings.
    static Borders
    Borders.valueOf(int type)
    Returns the enum constant of this class with the specified name.
    static Borders
    Borders.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Borders[]
    Borders.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.apache.poi.xwpf.usermodel with parameters of type Borders
    Modifier and Type
    Method
    Description
    void
    XWPFParagraph.setBorderBetween(Borders border)
    Specifies the border which shall be displayed between each paragraph in a set of paragraphs which have the same set of paragraph border settings.
    void
    XWPFParagraph.setBorderBottom(Borders border)
    Specifies the border which shall be displayed below a set of paragraphs which have the same set of paragraph border settings.
    void
    XWPFParagraph.setBorderLeft(Borders border)
    Specifies the border which shall be displayed on the left side of the page around the specified paragraph.
    void
    XWPFParagraph.setBorderRight(Borders border)
    Specifies the border which shall be displayed on the right side of the page around the specified paragraph.
    void
    XWPFParagraph.setBorderTop(Borders border)
    Specifies the border which shall be displayed above a set of paragraphs which have the same set of paragraph border settings.