Package mondrian.util

Interface SpatialValueTree.SpatialRegion<K,​E>

  • Type Parameters:
    K - Type of the dimension key.
    E - Type of the values along the dimension's axis.
    Enclosing interface:
    SpatialValueTree<K,​E,​V>

    public static interface SpatialValueTree.SpatialRegion<K,​E>
    Describes a spatial region within a SpatialValueTree.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      List<K> getDimensions()
      Provides a list of the dimensions included in this region.
      E[] getValues​(K dimension)
      Provides an array of objects describing this region's bounds within the specified dimension's axis.
    • Method Detail

      • getDimensions

        List<K> getDimensions()
        Provides a list of the dimensions included in this region.
        Returns:
        List of dimensions
      • getValues

        E[] getValues​(K dimension)
        Provides an array of objects describing this region's bounds within the specified dimension's axis.
        Parameters:
        dimension - Dimension
        Returns:
        An array of the bounds touched by this region.