Uses of Class
org.formulacompiler.spreadsheet.SpreadsheetException

Packages that use SpreadsheetException
org.formulacompiler.spreadsheet Contains the public compile-time API of AFC's spreadsheet compiler, which extends the core functional model compiler. 
 

Uses of SpreadsheetException in org.formulacompiler.spreadsheet
 

Subclasses of SpreadsheetException in org.formulacompiler.spreadsheet
static class SpreadsheetException.CellRangeNotUniDimensional
          When a formula gives a range name in a place where a single cell is expected, then the range must be unidimensional.
static class SpreadsheetException.LoadError
          An internal spreadsheet model could not be saved.
static class SpreadsheetException.SaveError
          An internal spreadsheet model could not be saved.
static class SpreadsheetException.UnsupportedExpression
          A cell formula contains a parsing error.
static class SpreadsheetException.UnsupportedFormat
          A unsupported spreadsheet file format extension was encountered.
 

Methods in org.formulacompiler.spreadsheet that throw SpreadsheetException
 void SpreadsheetByNameBinder.failIfCellNamesAreStillUnbound()
          Raises an exception if there are named cells that were not bound.
 java.lang.String Spreadsheet.Cell.getExpressionText()
          Returns the expression text of the cell, as parsed from the spreadsheet by AFC.
 Spreadsheet SpreadsheetLoader.loadFrom(java.lang.String _originalFileName, java.io.InputStream _stream)
          Loads a spreadsheet stream into an AFC spreadsheet model.
 void EngineBuilder.loadSpreadsheet(java.io.File _file)
          Loads the input spreadsheet from a file.
static Spreadsheet SpreadsheetCompiler.loadSpreadsheet(java.io.File _file)
          Loads a spreadsheet from a file and constructs an internal representation of it.
static Spreadsheet SpreadsheetCompiler.loadSpreadsheet(java.io.File _file, SpreadsheetLoader.Config _config)
          Loads a spreadsheet from a file and constructs an internal representation of it.
static Spreadsheet SpreadsheetCompiler.loadSpreadsheet(java.lang.String _originalFileName, java.io.InputStream _stream)
          Loads a spreadsheet from a file and constructs an internal representation of it.
static Spreadsheet SpreadsheetCompiler.loadSpreadsheet(java.lang.String _originalFileName, java.io.InputStream _stream, SpreadsheetLoader.Config _config)
          Loads a spreadsheet from a file and constructs an internal representation of it.
 void SpreadsheetSaver.save()
          Saves the configured model to the output stream.
static void SpreadsheetCompiler.saveSpreadsheet(Spreadsheet _model, java.io.File _outputFile, java.io.File _templateFileOrNull)
          Saves a spreadsheet model to a new spreadsheet file.