org.olap4j.metadata
Enum XmlaConstants.Content

java.lang.Object
  extended by java.lang.Enum<XmlaConstants.Content>
      extended by org.olap4j.metadata.XmlaConstants.Content
All Implemented Interfaces:
Serializable, Comparable<XmlaConstants.Content>
Enclosing class:
XmlaConstants

public static enum XmlaConstants.Content
extends Enum<XmlaConstants.Content>


Enum Constant Summary
Data
           
DataIncludeDefaultSlicer
           
DataOmitDefaultSlicer
           
None
           
Schema
           
SchemaData
           
 
Field Summary
static XmlaConstants.Content DEFAULT
          The content type default value - shared across more than one file
 
Method Summary
static XmlaConstants.Content valueOf(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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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 name
NullPointerException - if the argument is null

SourceForge.net_Logo