public final class GetNumericDate implements Function {
public static double call(PageContext pc , Object object) throws PageException {
DateTime date = Caster.toDate(object,true,pc.getTimeZone(),null);
if(date==null) date=Caster.toDate(object,pc.getTimeZone());
return date.toDoubleValue();
}
}