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

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

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

Classes in org.apache.poi.hssf.usermodel that implement RichTextString
 class HSSFRichTextString
          Rich text unicode string.
 

Methods in org.apache.poi.hssf.usermodel that return RichTextString
 RichTextString HSSFCreationHelper.createRichTextString(java.lang.String text)
           
 RichTextString HSSFCell.getRichStringCellValue()
          get the value of the cell as a string - for numeric cells we throw an exception.
 RichTextString HSSFTextbox.getString()
           
 RichTextString HSSFSimpleShape.getString()
           
 

Methods in org.apache.poi.hssf.usermodel with parameters of type RichTextString
 void HSSFCell.setCellValue(RichTextString value)
          Set a string value for the cell.
 void HSSFTextbox.setString(RichTextString string)
           
 void HSSFSimpleShape.setString(RichTextString string)
           
 void HSSFComment.setString(RichTextString string)
          Sets the rich text string used by this comment.
 

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

Methods in org.apache.poi.ss.usermodel that return RichTextString
 RichTextString CreationHelper.createRichTextString(java.lang.String text)
          Creates a new RichTextString instance
 RichTextString Cell.getRichStringCellValue()
          Get the value of the cell as a XSSFRichTextString
 RichTextString Textbox.getString()
           
 RichTextString Comment.getString()
          Fetches the rich text string of the comment
 

Methods in org.apache.poi.ss.usermodel with parameters of type RichTextString
 void Cell.setCellValue(RichTextString value)
          Set a rich string value for the cell.
 void Textbox.setString(RichTextString string)
           
 void Comment.setString(RichTextString string)
          Sets the rich text string used by this comment.