Interface WebDatamartTable


  • public interface WebDatamartTable
    Since:
    MicroStrategy Web 8.0.1
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAppendToTable()
      Indicates whether the property to append to the existing table is set.
      java.lang.String getName()
      Returns the name of the table
      boolean isNamePlaceHolder()
      Indicates whether the table name specified has macros that need to be replaced during execution
      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
      void setName​(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)