Package com.activeviam.copper
Enum MeasureMetadata.UserSpecific
- java.lang.Object
-
- java.lang.Enum<MeasureMetadata.UserSpecific>
-
- com.activeviam.copper.MeasureMetadata.UserSpecific
-
- All Implemented Interfaces:
Serializable,Comparable<MeasureMetadata.UserSpecific>
- Enclosing class:
- MeasureMetadata
public static enum MeasureMetadata.UserSpecific extends Enum<MeasureMetadata.UserSpecific>
Flags for user-specified metadata.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESCRIPTIONFlag for the measure description.EXECUTE_IN_DATA_CUBEFlag forMeasureMetadata.executeInDataCube.FOLDERFlag for the measure folder.FORMATTERFlag for the measure formatter.GROUPFlag for the measure group.NAMEFlag for the measure name.TYPEFlag for the measure type.VISIBLEFlag for the measure visibility.XMLA_AGGREGATORFlag for the xmla property "aggregator measure".
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MeasureMetadata.UserSpecificvalueOf(String name)Returns the enum constant of this type with the specified name.static MeasureMetadata.UserSpecific[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final MeasureMetadata.UserSpecific NAME
Flag for the measure name.
-
TYPE
public static final MeasureMetadata.UserSpecific TYPE
Flag for the measure type.
-
VISIBLE
public static final MeasureMetadata.UserSpecific VISIBLE
Flag for the measure visibility.
-
FORMATTER
public static final MeasureMetadata.UserSpecific FORMATTER
Flag for the measure formatter.
-
GROUP
public static final MeasureMetadata.UserSpecific GROUP
Flag for the measure group.
-
FOLDER
public static final MeasureMetadata.UserSpecific FOLDER
Flag for the measure folder.
-
DESCRIPTION
public static final MeasureMetadata.UserSpecific DESCRIPTION
Flag for the measure description.
-
XMLA_AGGREGATOR
public static final MeasureMetadata.UserSpecific XMLA_AGGREGATOR
Flag for the xmla property "aggregator measure".
-
EXECUTE_IN_DATA_CUBE
public static final MeasureMetadata.UserSpecific EXECUTE_IN_DATA_CUBE
Flag forMeasureMetadata.executeInDataCube.
-
-
Method Detail
-
values
public static MeasureMetadata.UserSpecific[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MeasureMetadata.UserSpecific c : MeasureMetadata.UserSpecific.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeasureMetadata.UserSpecific valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-