Uses of Class
org.formulacompiler.runtime.EngineException

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

Uses of EngineException in org.formulacompiler.runtime
 

Methods in org.formulacompiler.runtime that throw EngineException
static Engine FormulaRuntime.loadEngine(EngineLoader.Config _config, java.io.InputStream _stream)
          Like FormulaRuntime.loadEngine(InputStream), but with full configuration options.
static Engine FormulaRuntime.loadEngine(java.io.InputStream _stream)
          Returns a new engine deserialized by a registered engine loader (see register()) - it must have been saved using SaveableEngine.saveTo(java.io.OutputStream).
 Engine EngineLoader.loadEngineData(java.io.InputStream _stream)
          Loads an engine.
 

Uses of EngineException in org.formulacompiler.spreadsheet
 

Methods in org.formulacompiler.spreadsheet that throw EngineException
 SaveableEngine SpreadsheetToEngineCompiler.compile()
          Compiles the engine.
 SaveableEngine EngineBuilder.compile()
          Compiles an executable computation engine from the inputs to this builder.
static SaveableEngine SpreadsheetCompiler.compileEngine(SpreadsheetBinding _binding, NumericType _numericType, boolean _fullCaching)
          Same as SpreadsheetCompiler.compileEngine(SpreadsheetBinding, NumericType, Class, Method, boolean), leaving the factory class and method unspecified.
static SaveableEngine SpreadsheetCompiler.compileEngine(SpreadsheetBinding _binding, NumericType _numericType, java.lang.Class _factoryClass, java.lang.reflect.Method _factoryMethod, boolean _fullCaching)
          Returns a new instance of a spreadsheet compiler, which is used to compile a spreadsheet representation, together with a binding associating cells with input and output methods, to an excecutable computation engine.