PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/libformula-1.1.3/source/org/pentaho/reporting/libraries/formula/function/information/IsNumberFunction.java

#
Java | 67 lines | 36 code | 9 blank | 22 comment | 2 complexity | 56aeff6f2d1946e6c9088d2ca9a82a55 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it under the
  3. * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
  4. * Foundation.
  5. *
  6. * You should have received a copy of the GNU Lesser General Public License along with this
  7. * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
  8. * or from the Free Software Foundation, Inc.,
  9. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  12. * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU Lesser General Public License for more details.
  14. *
  15. * Copyright (c) 2006 - 2009 Pentaho Corporation and Contributors. All rights reserved.
  16. */
  17. package org.pentaho.reporting.libraries.formula.function.information;
  18. import org.pentaho.reporting.libraries.formula.EvaluationException;
  19. import org.pentaho.reporting.libraries.formula.FormulaContext;
  20. import org.pentaho.reporting.libraries.formula.LibFormulaErrorValue;
  21. import org.pentaho.reporting.libraries.formula.function.Function;
  22. import org.pentaho.reporting.libraries.formula.function.ParameterCallback;
  23. import org.pentaho.reporting.libraries.formula.lvalues.TypeValuePair;
  24. import org.pentaho.reporting.libraries.formula.typing.Type;
  25. import org.pentaho.reporting.libraries.formula.typing.coretypes.LogicalType;
  26. /**
  27. * This function retruns true if the given value is of type Number.
  28. *
  29. * @author Cedric Pronzato
  30. *
  31. */
  32. public class IsNumberFunction implements Function
  33. {
  34. private static final TypeValuePair RETURN_TRUE = new TypeValuePair(LogicalType.TYPE, Boolean.TRUE);
  35. private static final TypeValuePair RETURN_FALSE = new TypeValuePair(LogicalType.TYPE, Boolean.FALSE);
  36. private static final long serialVersionUID = 3298090211745552284L;
  37. public IsNumberFunction()
  38. {
  39. }
  40. public TypeValuePair evaluate(final FormulaContext context, final ParameterCallback parameters) throws EvaluationException
  41. {
  42. final int parameterCount = parameters.getParameterCount();
  43. if (parameterCount < 1)
  44. {
  45. throw EvaluationException.getInstance(LibFormulaErrorValue.ERROR_ARGUMENTS_VALUE);
  46. }
  47. final Type type1 = parameters.getType(0);
  48. if(type1.isFlagSet(Type.NUMERIC_TYPE))
  49. {
  50. return RETURN_TRUE;
  51. }
  52. return RETURN_FALSE;
  53. }
  54. public String getCanonicalName()
  55. {
  56. return "ISNUMBER";
  57. }
  58. }