Package mondrian.calc
Interface StringCalc
-
- All Superinterfaces:
Calc
- All Known Implementing Classes:
AbstractStringCalc
,AbstractVoidCalc
,AggregateFunDef.AggregateCalc
,CacheCalc
,ConstantCalc
,GenericCalc
,MemberArrayValueCalc
,MemberValueCalc
,TupleValueCalc
,ValueCalc
public interface StringCalc extends Calc
Compiled expression whose result is aString
.When implementing this interface, it is convenient to extend
AbstractStringCalc
, but it is not required.- Since:
- Sep 26, 2005
- Author:
- jhyde
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
evaluateString(Evaluator evaluator)
Evaluates this expression to yield aString
value.-
Methods inherited from interface mondrian.calc.Calc
accept, dependsOn, evaluate, getResultStyle, getType, isWrapperFor, unwrap
-
-