1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/type/NumericType.java#4 $ 3 // This software is subject to the terms of the Common Public License 4 // Agreement, available at the following URL: 5 // http://www.opensource.org/licenses/cpl.html. 6 // Copyright (C) 2005-2006 Julian Hyde 7 // All Rights Reserved. 8 // You must accept the terms of that agreement to use this software. 9 */ 10 package mondrian.olap.type; 11 12 import mondrian.olap.Dimension; 13 import mondrian.olap.Hierarchy; 14 15 /** 16 * The type of a numeric expression. 17 * 18 * @author jhyde 19 * @since Feb 17, 2005 20 * @version $Id: //open/mondrian/src/main/mondrian/olap/type/NumericType.java#4 $ 21 */ 22 public class NumericType extends ScalarType { 23 24 /** 25 * Creates a numeric type. 26 */ 27 public NumericType() { 28 } 29 30 public String toString() { 31 return "NUMERIC"; 32 } 33 } 34 35 // End NumericType.java 36