Package com.appliedolap.essbase.impl
Class EssDrillthroughImpl.Options
java.lang.Object
com.appliedolap.essbase.impl.EssDrillthroughImpl.Options
- Enclosing class:
- EssDrillthroughImpl
Options for drill-through report execution.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the current delimiter.booleanGets the value for including headers.voidsetDelimiter(String delimiter) Sets the delimiter to use.voidsetIncludeHeaders(boolean includeHeaders) Sets whether headers are to be included in the output or not.
-
Constructor Details
-
Options
public Options()
-
-
Method Details
-
getDelimiter
Gets the current delimiter.- Returns:
- the delimiter
-
setDelimiter
Sets the delimiter to use. At the time of this writing, the Essbase REST API only allows a comma or tab. This Java API will not preclude you from using something else, but you are encouraged to use the constants inEssDataSourceImpl.- Parameters:
delimiter- the delimiter
-
isIncludeHeaders
public boolean isIncludeHeaders()Gets the value for including headers.- Returns:
- true if include headers is on, false otherwise
-
setIncludeHeaders
public void setIncludeHeaders(boolean includeHeaders) Sets whether headers are to be included in the output or not. This is a property on the Essbase REST API call (as opposed to a post-processing step).- Parameters:
includeHeaders- value for include headers
-