001 /* 002 // $Id: NumericType.java 229 2009-05-08 19:11:29Z jhyde $ 003 // This software is subject to the terms of the Eclipse Public License v1.0 004 // Agreement, available at the following URL: 005 // http://www.eclipse.org/legal/epl-v10.html. 006 // Copyright (C) 2005-2008 Julian Hyde 007 // All Rights Reserved. 008 // You must accept the terms of that agreement to use this software. 009 */ 010 package org.olap4j.type; 011 012 import org.olap4j.metadata.Dimension; 013 import org.olap4j.metadata.Hierarchy; 014 015 /** 016 * The type of a numeric expression. 017 * 018 * @author jhyde 019 * @since Feb 17, 2005 020 * @version $Id: NumericType.java 229 2009-05-08 19:11:29Z jhyde $ 021 */ 022 public class NumericType extends ScalarType { 023 024 /** 025 * Creates a numeric type. 026 */ 027 public NumericType() { 028 } 029 030 public String toString() { 031 return "NUMERIC"; 032 } 033 } 034 035 // End NumericType.java