public enum DimensionType extends Enum<DimensionType>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final DimensionType StandardDimension
public static final DimensionType TimeDimension
public static final DimensionType MeasuresDimension
public static DimensionType[] values()
for (DimensionType c : DimensionType.values()) System.out.println(c);
public static DimensionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Hitachi Vantara. All rights reserved.