Class StaticArrayCallback
- java.lang.Object
-
- org.pentaho.reporting.libraries.formula.typing.StaticArrayCallback
-
- All Implemented Interfaces:
ArrayCallback
public class StaticArrayCallback extends java.lang.Object implements ArrayCallback
An array call-back that copies all contents of the source into a private buffer.- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description StaticArrayCallback(ArrayCallback source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumnCount()LValuegetRaw(int row, int column)intgetRowCount()TypegetType(int row, int column)java.lang.ObjectgetValue(int row, int column)
-
-
-
Constructor Detail
-
StaticArrayCallback
public StaticArrayCallback(ArrayCallback source) throws EvaluationException
- Throws:
EvaluationException
-
-
Method Detail
-
getRaw
public LValue getRaw(int row, int column) throws EvaluationException
- Specified by:
getRawin interfaceArrayCallback- Throws:
EvaluationException
-
getValue
public java.lang.Object getValue(int row, int column) throws EvaluationException- Specified by:
getValuein interfaceArrayCallback- Throws:
EvaluationException
-
getType
public Type getType(int row, int column) throws EvaluationException
- Specified by:
getTypein interfaceArrayCallback- Throws:
EvaluationException
-
getColumnCount
public int getColumnCount()
- Specified by:
getColumnCountin interfaceArrayCallback
-
getRowCount
public int getRowCount()
- Specified by:
getRowCountin interfaceArrayCallback
-
-