001/* 002// This software is subject to the terms of the Eclipse Public License v1.0 003// Agreement, available at the following URL: 004// http://www.eclipse.org/legal/epl-v10.html. 005// You must accept the terms of that agreement to use this software. 006// 007// Copyright (C) 2004-2005 Galt Johnson 008// Copyright (C) 2004-2005 Julian Hyde 009// Copyright (C) 2005-2007 Pentaho and others 010// All Rights Reserved. 011*/ 012package mondrian.olap; 013 014/** 015 * Enumerates the types of dimensions. 016 * 017 * @author Galt Johnson 018 * @since 5 April, 2004 019 */ 020public enum DimensionType { 021 /** 022 * Indicates that the dimension is not related to time. 023 */ 024 StandardDimension, 025 026 /** 027 * Indicates that a dimension is a time dimension. 028 */ 029 TimeDimension, 030 031 /** 032 * Indicates the a dimension is the measures dimension. 033 */ 034 MeasuresDimension, 035} 036 037// End DimensionType.java