Uses of Class
org.apache.poi.xwpf.usermodel.Borders
-
Packages that use Borders Package Description org.apache.poi.xwpf.usermodel -
-
Uses of Borders in org.apache.poi.xwpf.usermodel
Methods in org.apache.poi.xwpf.usermodel that return Borders Modifier and Type Method Description Borders
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.Borders
XWPFParagraph. getBorderBottom()
Specifies the border which shall be displayed below a set of paragraphs which have the same set of paragraph border settings.Borders
XWPFParagraph. getBorderLeft()
Specifies the border which shall be displayed on the left side of the page around the specified paragraph.Borders
XWPFParagraph. getBorderRight()
Specifies the border which shall be displayed on the right side of the page around the specified paragraph.Borders
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 type with the specified name.static Borders
Borders. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Borders[]
Borders. values()
Returns an array containing the constants of this enum type, 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.
-