Interface Query

    • Method Detail

      • getGroups

        java.util.List<Group> getGroups()
      • drillDown

        Query drillDown​(java.lang.Object... columns)
      • drillUp

        Query drillUp()
      • slice

        Query slice​(java.lang.Object value)
      • dice

        Query dice​(java.util.Set<java.lang.Object> valuesSets)
      • collapse

        Query collapse()
      • getCuboid

        Cuboid getCuboid()
      • setDice

        void setDice​(java.util.Set<java.lang.Object> valuesSets)
      • asDataFrame

        DataFrame asDataFrame​(boolean includeIndex)
      • addQueryListener

        void addQueryListener​(QueryListener listener)
        Add a listener to the list that's notified each time a change to the query occurs.
        Parameters:
        listener - the QueryListener
      • addWeakQueryListener

        void addWeakQueryListener​(QueryListener listener)
        Add a listener to the list that's notified each time a change to the query occurs. The listener will automatically be disposed of should no other object have a reference to it.
        Parameters:
        listener - the QueryListener
      • removeQueryListener

        void removeQueryListener​(QueryListener listener)
        Remove a listener to the list that's notified each time a change to the query occurs.
        Parameters:
        listener - the QueryListener
      • removeQueryListeners

        void removeQueryListeners()
        Remove all listeners to the list that's notified each time a change to the query occurs.