Package org.olap4j.metadata
Enum XmlaConstants.Content
- java.lang.Object
-
- java.lang.Enum<XmlaConstants.Content>
-
- org.olap4j.metadata.XmlaConstants.Content
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<XmlaConstants.Content>
- Enclosing class:
- XmlaConstants
public static enum XmlaConstants.Content extends java.lang.Enum<XmlaConstants.Content>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Data
DataIncludeDefaultSlicer
DataOmitDefaultSlicer
None
Schema
SchemaData
-
Field Summary
Fields Modifier and Type Field Description static XmlaConstants.Content
DEFAULT
The content type default value - shared across more than one file
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static XmlaConstants.Content
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static XmlaConstants.Content[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final XmlaConstants.Content None
-
Schema
public static final XmlaConstants.Content Schema
-
Data
public static final XmlaConstants.Content Data
-
SchemaData
public static final XmlaConstants.Content SchemaData
-
DataOmitDefaultSlicer
public static final XmlaConstants.Content DataOmitDefaultSlicer
-
DataIncludeDefaultSlicer
public static final XmlaConstants.Content DataIncludeDefaultSlicer
-
-
Field Detail
-
DEFAULT
public static final XmlaConstants.Content DEFAULT
The content type default value - shared across more than one file
-
-
Method Detail
-
values
public static XmlaConstants.Content[] 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 (XmlaConstants.Content c : XmlaConstants.Content.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XmlaConstants.Content 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
-
-