KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > DimensionType


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/DimensionType.java#5 $
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) 2004-2005 Galt Johnson
7 // Copyright (C) 2004-2006 Julian Hyde and others
8 // All Rights Reserved.
9 // You must accept the terms of that agreement to use this software.
10 */

11 package mondrian.olap;
12
13 /**
14  * Enumerates the types of dimensions.
15  *
16  * @author Galt Johnson
17  * @since 5 April, 2004
18  * @version $Id: //open/mondrian/src/main/mondrian/olap/DimensionType.java#5 $
19  */

20 public enum DimensionType {
21     /**
22      * Indicates that the dimension is not related to time.
23      */

24     StandardDimension,
25
26     /**
27      * Indicates that a dimension is a time dimension.
28      */

29     TimeDimension
30 }
31
32 // End DimensionType.java
33
Popular Tags