Uses of Class
org.apache.poi.ss.usermodel.BorderStyle

Packages that use BorderStyle
org.apache.poi.hssf.converter   
org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model 
org.apache.poi.ss.usermodel   
org.apache.poi.xssf.usermodel   
org.apache.poi.xssf.usermodel.extensions   
 

Uses of BorderStyle in org.apache.poi.hssf.converter
 

Methods in org.apache.poi.hssf.converter with parameters of type BorderStyle
static java.lang.String AbstractExcelUtils.getBorderStyle(BorderStyle xlsBorder)
           
static java.lang.String AbstractExcelUtils.getBorderWidth(BorderStyle xlsBorder)
           
protected  void ExcelToFoConverter.processCellStyleBorder(HSSFWorkbook workbook, org.w3c.dom.Element cellTarget, java.lang.String type, BorderStyle xlsBorder, short borderColor)
           
 

Uses of BorderStyle in org.apache.poi.hssf.usermodel
 

Methods in org.apache.poi.hssf.usermodel that return BorderStyle
 BorderStyle HSSFCellStyle.getBorderBottom()
          get the type of border to use for the bottom border of the cell
 BorderStyle HSSFBorderFormatting.getBorderBottom()
           
 BorderStyle HSSFBorderFormatting.getBorderDiagonal()
           
 BorderStyle HSSFCellStyle.getBorderLeft()
          get the type of border to use for the left border of the cell
 BorderStyle HSSFBorderFormatting.getBorderLeft()
           
 BorderStyle HSSFCellStyle.getBorderRight()
          get the type of border to use for the right border of the cell
 BorderStyle HSSFBorderFormatting.getBorderRight()
           
 BorderStyle HSSFCellStyle.getBorderTop()
          get the type of border to use for the top border of the cell
 BorderStyle HSSFBorderFormatting.getBorderTop()
           
 

Methods in org.apache.poi.hssf.usermodel with parameters of type BorderStyle
 void HSSFCellStyle.setBorderBottom(BorderStyle border)
          set the type of border to use for the bottom border of the cell
 void HSSFBorderFormatting.setBorderBottom(BorderStyle border)
           
 void HSSFBorderFormatting.setBorderDiagonal(BorderStyle border)
           
 void HSSFCellStyle.setBorderLeft(BorderStyle border)
          set the type of border to use for the left border of the cell
 void HSSFBorderFormatting.setBorderLeft(BorderStyle border)
           
 void HSSFCellStyle.setBorderRight(BorderStyle border)
          set the type of border to use for the right border of the cell
 void HSSFBorderFormatting.setBorderRight(BorderStyle border)
           
 void HSSFCellStyle.setBorderTop(BorderStyle border)
          set the type of border to use for the top border of the cell
 void HSSFBorderFormatting.setBorderTop(BorderStyle border)
           
 

Uses of BorderStyle in org.apache.poi.ss.usermodel
 

Methods in org.apache.poi.ss.usermodel that return BorderStyle
 BorderStyle CellStyle.getBorderBottom()
          get the type of border to use for the bottom border of the cell
 BorderStyle BorderFormatting.getBorderBottom()
           
 BorderStyle BorderFormatting.getBorderDiagonal()
           
 BorderStyle CellStyle.getBorderLeft()
          get the type of border to use for the left border of the cell
 BorderStyle BorderFormatting.getBorderLeft()
           
 BorderStyle CellStyle.getBorderRight()
          get the type of border to use for the right border of the cell
 BorderStyle BorderFormatting.getBorderRight()
           
 BorderStyle CellStyle.getBorderTop()
          get the type of border to use for the top border of the cell
 BorderStyle BorderFormatting.getBorderTop()
           
static BorderStyle BorderStyle.valueOf(short code)
           
static BorderStyle BorderStyle.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BorderStyle[] BorderStyle.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.poi.ss.usermodel with parameters of type BorderStyle
 void CellStyle.setBorderBottom(BorderStyle border)
          set the type of border to use for the bottom border of the cell
 void BorderFormatting.setBorderBottom(BorderStyle border)
          Set bottom border.
 void BorderFormatting.setBorderDiagonal(BorderStyle border)
          Set diagonal border.
 void CellStyle.setBorderLeft(BorderStyle border)
          set the type of border to use for the left border of the cell
 void BorderFormatting.setBorderLeft(BorderStyle border)
          Set left border.
 void CellStyle.setBorderRight(BorderStyle border)
          set the type of border to use for the right border of the cell
 void BorderFormatting.setBorderRight(BorderStyle border)
          Set right border.
 void CellStyle.setBorderTop(BorderStyle border)
          set the type of border to use for the top border of the cell
 void BorderFormatting.setBorderTop(BorderStyle border)
          Set top border.
 

Uses of BorderStyle in org.apache.poi.xssf.usermodel
 

Methods in org.apache.poi.xssf.usermodel that return BorderStyle
 BorderStyle XSSFCellStyle.getBorderBottom()
          Get the type of border to use for the bottom border of the cell
 BorderStyle XSSFBorderFormatting.getBorderBottom()
           
 BorderStyle XSSFCellStyle.getBorderBottomEnum()
          Deprecated. 3.15 beta 2. Use XSSFCellStyle.getBorderBottom()
 BorderStyle XSSFBorderFormatting.getBorderDiagonal()
           
 BorderStyle XSSFCellStyle.getBorderLeft()
          Get the type of border to use for the left border of the cell
 BorderStyle XSSFBorderFormatting.getBorderLeft()
           
 BorderStyle XSSFCellStyle.getBorderLeftEnum()
          Deprecated. 3.15 beta 2. Use XSSFCellStyle.getBorderLeft()
 BorderStyle XSSFCellStyle.getBorderRight()
          Get the type of border to use for the right border of the cell
 BorderStyle XSSFBorderFormatting.getBorderRight()
           
 BorderStyle XSSFCellStyle.getBorderRightEnum()
          Deprecated. 3.15 beta 2. Use XSSFCellStyle.getBorderRight()
 BorderStyle XSSFCellStyle.getBorderTop()
          Get the type of border to use for the top border of the cell
 BorderStyle XSSFBorderFormatting.getBorderTop()
           
 BorderStyle XSSFCellStyle.getBorderTopEnum()
          Deprecated. 3.15 beta 2. Use XSSFCellStyle.getBorderTop()
 

Methods in org.apache.poi.xssf.usermodel with parameters of type BorderStyle
 void XSSFCellStyle.setBorderBottom(BorderStyle border)
          Set the type of border to use for the bottom border of the cell
 void XSSFBorderFormatting.setBorderBottom(BorderStyle border)
           
 void XSSFBorderFormatting.setBorderDiagonal(BorderStyle border)
           
 void XSSFCellStyle.setBorderLeft(BorderStyle border)
          Set the type of border to use for the left border of the cell
 void XSSFBorderFormatting.setBorderLeft(BorderStyle border)
           
 void XSSFCellStyle.setBorderRight(BorderStyle border)
          Set the type of border to use for the right border of the cell
 void XSSFBorderFormatting.setBorderRight(BorderStyle border)
           
 void XSSFCellStyle.setBorderTop(BorderStyle border)
          Set the type of border to use for the top border of the cell
 void XSSFBorderFormatting.setBorderTop(BorderStyle border)
           
 

Uses of BorderStyle in org.apache.poi.xssf.usermodel.extensions
 

Methods in org.apache.poi.xssf.usermodel.extensions that return BorderStyle
 BorderStyle XSSFCellBorder.getBorderStyle(XSSFCellBorder.BorderSide side)
          Get the type of border to use for the selected border
 

Methods in org.apache.poi.xssf.usermodel.extensions with parameters of type BorderStyle
 void XSSFCellBorder.setBorderStyle(XSSFCellBorder.BorderSide side, BorderStyle style)
          Set the type of border to use for the selected border
 



Copyright 2016 The Apache Software Foundation or its licensors, as applicable.