Uses of Class
org.formulacompiler.spreadsheet.Orientation

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

Uses of Orientation in org.formulacompiler.spreadsheet
 

Fields in org.formulacompiler.spreadsheet declared as Orientation
static Orientation Orientation.REPEAT_COLUMNS
           
static Orientation Orientation.REPEAT_ROWS
           
 

Methods in org.formulacompiler.spreadsheet that return Orientation
static Orientation Orientation.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Orientation[] Orientation.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.formulacompiler.spreadsheet with parameters of type Orientation
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, CallFrame _inputCallChainReturningIterable, java.lang.Class _inputClass, CallFrame _outputCallReturningIterableToImplement, java.lang.Class _outputClass)
          Defines a range in the spreadsheet as a section of similar, repeating rows (or columns).
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, java.lang.reflect.Method _inputMethodReturningIterable, java.lang.Class _inputClass, java.lang.reflect.Method _outputMethodReturningIterableToImplement, java.lang.Class _outputClass)
          Like SpreadsheetBinder.Section.defineRepeatingSection(org.formulacompiler.spreadsheet.Spreadsheet.Range, Orientation, CallFrame, Class, CallFrame, Class), but constructs the CallFrame instances directly.
 SpreadsheetBinder.Section SpreadsheetBinder.Section.defineRepeatingSection(Spreadsheet.Range _range, Orientation _orientation, java.lang.String _nameOfInputMethodReturningIterable, java.lang.Class _inputClass, java.lang.String _nameOfOutputMethodReturningIterableToImplement, java.lang.Class _outputClass)
          Like SpreadsheetBinder.Section.defineRepeatingSection(org.formulacompiler.spreadsheet.Spreadsheet.Range, Orientation, CallFrame, Class, CallFrame, Class), but constructs the CallFrame instances directly.
 

Constructors in org.formulacompiler.spreadsheet with parameters of type Orientation
SpreadsheetException.SectionExtentNotCovered(java.lang.String _rangeAt, java.lang.String _sectionName, Orientation _orientation)