Uses of Interface
org.apache.poi.ss.usermodel.CellStyle

Packages that use CellStyle
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.ss.util   
 

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

Classes in org.apache.poi.hssf.usermodel that implement CellStyle
 class HSSFCellStyle
          High level representation of the style of a cell in a sheet of a workbook.
 

Methods in org.apache.poi.hssf.usermodel that return CellStyle
 CellStyle HSSFWorkbook.createCellStyle()
          create a new Cell style and add it to the workbook's style table
 CellStyle HSSFCell.getCellStyle()
          get the style for the cell.
 CellStyle HSSFWorkbook.getCellStyleAt(short idx)
          get the cell style object at the given index
 CellStyle HSSFSheet.getColumnStyle(int column)
          Returns the HSSFCellStyle that applies to the given (0 based) column, or null if no style has been set for that column
 

Methods in org.apache.poi.hssf.usermodel with parameters of type CellStyle
 void HSSFCellStyle.cloneStyleFrom(CellStyle source)
          Clones all the style information from another HSSFCellStyle, onto this one.
 void HSSFCell.setCellStyle(CellStyle style)
          set the style for the cell.
 void HSSFSheet.setDefaultColumnStyle(int column, CellStyle style)
          Sets the default column style for a given column.
 

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

Methods in org.apache.poi.ss.usermodel that return CellStyle
 CellStyle Workbook.createCellStyle()
          Create a new Cell style and add it to the workbook's style table
 CellStyle Cell.getCellStyle()
          Return the cell's style.
 CellStyle Workbook.getCellStyleAt(short idx)
          Get the cell style object at the given index
 CellStyle Sheet.getColumnStyle(int column)
          Returns the CellStyle that applies to the given (0 based) column, or null if no style has been set for that column
 

Methods in org.apache.poi.ss.usermodel with parameters of type CellStyle
 void CellStyle.cloneStyleFrom(CellStyle source)
          Clones all the style information from another CellStyle, onto this one.
 void Cell.setCellStyle(CellStyle style)
          Set the style for the cell.
 void Sheet.setDefaultColumnStyle(int column, CellStyle style)
          Sets the default column style for a given column.
 

Uses of CellStyle in org.apache.poi.ss.util
 

Methods in org.apache.poi.ss.util with parameters of type CellStyle
static Cell CellUtil.createCell(Row row, int column, java.lang.String value, CellStyle style)
          Creates a cell, gives it a value, and applies a style if provided