|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DimensionType> mondrian.olap.DimensionType
public enum DimensionType
Enumerates the types of dimensions.
Enum Constant Summary | |
---|---|
MeasuresDimension
Indicates the a dimension is the measures dimension. |
|
StandardDimension
Indicates that the dimension is not related to time. |
|
TimeDimension
Indicates that a dimension is a time dimension. |
Method Summary | |
---|---|
static DimensionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DimensionType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DimensionType StandardDimension
public static final DimensionType TimeDimension
public static final DimensionType MeasuresDimension
Method Detail |
---|
public static DimensionType[] values()
for (DimensionType c : DimensionType.values()) System.out.println(c);
public static DimensionType valueOf(String name)
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |