📄 dimension.java
字号:
/*
* ====================================================================
* This software is subject to the terms of the Common Public License
* Agreement, available at the following URL:
* http://www.opensource.org/licenses/cpl.html .
* Copyright (C) 2003-2004 TONBELLER AG.
* All Rights Reserved.
* You must accept the terms of that agreement to use this software.
* ====================================================================
*
*
*/
package com.tonbeller.jpivot.olap.model;
import java.util.Comparator;
/**
* OLAP Dimension
* @author av
*/
public interface Dimension extends Expression, Displayable, Visitable, Decorator {
/**
* sorts Dimensions by labels except Measures which always comes first.
*/
static Comparator MEASURES_FIRST_COMPARATOR = new Comparator() {
public int compare(Object o1, Object o2) {
Dimension d1 = (Dimension) o1;
Dimension d2 = (Dimension) o2;
if (d1.isMeasure() != d2.isMeasure())
return d1.isMeasure() ? -1 : 1;
return d1.getLabel().compareTo(d2.getLabel());
}
};
/**
* return the hierarchies of this dimension
*/
Hierarchy[] getHierarchies();
/**
* return true if this is a time dimension. Its common to have multiple time
* dimensions, e.g. one for receipt of order and one for shipping.
*/
boolean isTime();
/**
* true if this is the measures dimension
*/
boolean isMeasure();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -