Package com.microstrategy.web.objects
Interface WebDatamartTable
-
public interface WebDatamartTable- Since:
- MicroStrategy Web 8.0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAppendToTable()Indicates whether the property to append to the existing table is set.java.lang.StringgetName()Returns the name of the tablebooleanisNamePlaceHolder()Indicates whether the table name specified has macros that need to be replaced during executionvoidsetAppendToTable(boolean append)Indicates whether the result of the execution should be appended to the table (defined by the table name) or a new table should be createdvoidsetName(java.lang.String name, boolean containsPlaceholder)Sets the name of the table
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the table- Returns:
- name of the table
-
setName
void setName(java.lang.String name, boolean containsPlaceholder)Sets the name of the table
-
isNamePlaceHolder
boolean isNamePlaceHolder()
Indicates whether the table name specified has macros that need to be replaced during execution
-
setAppendToTable
void setAppendToTable(boolean append)
Indicates whether the result of the execution should be appended to the table (defined by the table name) or a new table should be created
-
getAppendToTable
boolean getAppendToTable()
Indicates whether the property to append to the existing table is set.- See Also:
setAppendToTable(boolean)
-
-