Package mondrian.olap.fun
Enum NativizeSetFunDef.NativeElementType
- java.lang.Object
-
- java.lang.Enum<NativizeSetFunDef.NativeElementType>
-
- mondrian.olap.fun.NativizeSetFunDef.NativeElementType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NativizeSetFunDef.NativeElementType>
- Enclosing class:
- NativizeSetFunDef
static enum NativizeSetFunDef.NativeElementType extends java.lang.Enum<NativizeSetFunDef.NativeElementType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENUMERATED_VALUE
LEVEL_MEMBERS
NON_NATIVE
OTHER_NATIVE
SENTINEL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isNativeCompatible()
static NativizeSetFunDef.NativeElementType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NativizeSetFunDef.NativeElementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEVEL_MEMBERS
public static final NativizeSetFunDef.NativeElementType LEVEL_MEMBERS
-
ENUMERATED_VALUE
public static final NativizeSetFunDef.NativeElementType ENUMERATED_VALUE
-
OTHER_NATIVE
public static final NativizeSetFunDef.NativeElementType OTHER_NATIVE
-
NON_NATIVE
public static final NativizeSetFunDef.NativeElementType NON_NATIVE
-
SENTINEL
public static final NativizeSetFunDef.NativeElementType SENTINEL
-
-
Method Detail
-
values
public static NativizeSetFunDef.NativeElementType[] 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 (NativizeSetFunDef.NativeElementType c : NativizeSetFunDef.NativeElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NativizeSetFunDef.NativeElementType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
isNativeCompatible
public boolean isNativeCompatible()
-
-