|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LevelType>
mondrian.olap.LevelType
Level.Type
before mondrian-4.0.
public enum LevelType
Enumerates the types of levels.
Enum Constant Summary | |
---|---|
Null
Deprecated. Indicates that a level holds the null member. |
|
Regular
Deprecated. Indicates that the level is not related to time. |
|
TimeDays
Deprecated. Indicates that a level refers to days. |
|
TimeHalfYear
Deprecated. Indicates that a level refers to half years. |
|
TimeHours
Deprecated. Indicates that a level refers to hours. |
|
TimeMinutes
Deprecated. Indicates that a level refers to minutes. |
|
TimeMonths
Deprecated. Indicates that a level refers to months. |
|
TimeQuarters
Deprecated. Indicates that a level refers to quarters. |
|
TimeSeconds
Deprecated. Indicates that a level refers to seconds. |
|
TimeUndefined
Deprecated. Indicates that a level is an unspecified time period. |
|
TimeWeeks
Deprecated. Indicates that a level refers to weeks. |
|
TimeYears
Deprecated. Indicates that a level refers to years. |
Method Summary | |
---|---|
boolean |
isTime()
Deprecated. Returns whether this is a time level. |
static LevelType |
valueOf(java.lang.String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static LevelType[] |
values()
Deprecated. 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 LevelType Regular
public static final LevelType TimeYears
DimensionType.TimeDimension
.
public static final LevelType TimeHalfYear
DimensionType.TimeDimension
.
public static final LevelType TimeQuarters
DimensionType.TimeDimension
.
public static final LevelType TimeMonths
DimensionType.TimeDimension
.
public static final LevelType TimeWeeks
DimensionType.TimeDimension
.
public static final LevelType TimeDays
DimensionType.TimeDimension
.
public static final LevelType TimeHours
DimensionType.TimeDimension
.
public static final LevelType TimeMinutes
DimensionType.TimeDimension
.
public static final LevelType TimeSeconds
DimensionType.TimeDimension
.
public static final LevelType TimeUndefined
DimensionType.TimeDimension
.
public static final LevelType Null
Method Detail |
---|
public static LevelType[] values()
for (LevelType c : LevelType.values()) System.out.println(c);
public static LevelType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean isTime()
|
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |