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