001    /*
002    // $Id: //open/mondrian/src/main/mondrian/olap/DimensionType.java#7 $
003    // This software is subject to the terms of the Common Public License
004    // Agreement, available at the following URL:
005    // http://www.opensource.org/licenses/cpl.html.
006    // Copyright (C) 2004-2005 Galt Johnson
007    // Copyright (C) 2004-2007 Julian Hyde and others
008    // All Rights Reserved.
009    // You must accept the terms of that agreement to use this software.
010    */
011    package mondrian.olap;
012    
013    /**
014     * Enumerates the types of dimensions.
015     *
016     * @author Galt Johnson
017     * @since 5 April, 2004
018     * @version $Id: //open/mondrian/src/main/mondrian/olap/DimensionType.java#7 $
019     */
020    public 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