org.apache.poi.ss.usermodel
Interface CreationHelper

All Known Implementing Classes:
HSSFCreationHelper

public interface CreationHelper

An object that handles instantiating concrete classes of the various instances one needs for HSSF and XSSF. Works around a major shortcoming in Java, where we can't have static methods on interfaces or abstract classes. This allows you to get the appropriate class for a given interface, without you having to worry about if you're dealing with HSSF or XSSF, despite Java being quite rubbish.


Method Summary
 ClientAnchorcreateClientAnchor()
           
 DataFormatcreateDataFormat()
          Creates a new DataFormat instance
 ExtendedColorcreateExtendedColor()
          Creates a XSSF-style Color object, used for extended sheet formattings and conditional formattings
 FormulaEvaluatorcreateFormulaEvaluator()
          Creates FormulaEvaluator - an object that evaluates formula cells.
 HyperlinkcreateHyperlink(int type)
          Creates a new Hyperlink, of the given type
 RichTextStringcreateRichTextString(java.lang.String text)
          Creates a new RichTextString instance
 

Method Detail

createRichTextString

RichTextString createRichTextString(java.lang.String text)
Creates a new RichTextString instance

Parameters:
text - The text to initialise the RichTextString with

createDataFormat

DataFormat createDataFormat()
Creates a new DataFormat instance


createHyperlink

Hyperlink createHyperlink(int type)
Creates a new Hyperlink, of the given type


createFormulaEvaluator

FormulaEvaluator createFormulaEvaluator()
Creates FormulaEvaluator - an object that evaluates formula cells.

Returns:
a FormulaEvaluator instance

createExtendedColor

ExtendedColor createExtendedColor()
Creates a XSSF-style Color object, used for extended sheet formattings and conditional formattings


createClientAnchor

ClientAnchor createClientAnchor()




NOTHING
NOTHING
Add the Maven Dependecy to your project: maven dependecy for com.amazonaws : aws-java-sdk : 1.3.14