com.dslplatform.api.client

CubeBuilder

class CubeBuilder[TCube <: Cube[TSource], TSource <: Searchable] extends AnyRef

Utility class for building olap cube analysis.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CubeBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CubeBuilder(cube: Cube[TSource])(implicit arg0: ClassTag[TCube], arg1: ClassTag[TSource])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def analyze[TResult](implicit arg0: ClassTag[TResult], locator: ServiceLocator, ec: ExecutionContext, duration: Duration): Seq[TResult]

    Runs the analysis using provided configuration.

    Runs the analysis using provided configuration. Result will be deserialized to TResult

    returns

    sequence of specified data types

  7. def analyzeMap(implicit locator: ServiceLocator, ec: ExecutionContext, duration: Duration): Seq[Map[String, Any]]

    Runs the analysis using provided configuration.

    Runs the analysis using provided configuration. Result will be deserialized into sequence of Map[String, Any]

    returns

    analysis result

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def ascending(property: String): CubeBuilder[TCube, TSource]

    Order result ascending using a provided property or path

    Order result ascending using a provided property or path

    property

    name of domain objects property or path

    returns

    self

  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def descending(property: String): CubeBuilder[TCube, TSource]

    Order result descending using a provided property or path

    Order result descending using a provided property or path

    property

    name of domain objects property or path

    returns

    self

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def filter(specification: Specification[TSource]): CubeBuilder[TCube, TSource]

    Restrict analysis on data subset

    Restrict analysis on data subset

    specification

    use provided specification to filter data used for analysis

    returns

    self

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def limit(limit: Int): CubeBuilder[TCube, TSource]

    Limit total number of results to provided value

    Limit total number of results to provided value

    limit

    maximum number of results

    returns

    self

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  23. def offset(offset: Int): CubeBuilder[TCube, TSource]

    Skip specified number of initial results

    Skip specified number of initial results

    offset

    number of results to skip

    returns

    self

  24. def skip(offset: Int): CubeBuilder.this.type

    Skip specified number of initial results

    Skip specified number of initial results

    offset

    number of results to skip

    returns

    self

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def take(limit: Int): CubeBuilder.this.type

    Limit total number of results to provided value

    Limit total number of results to provided value

    limit

    maximum number of results

    returns

    self

  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. def use(dimensionOrFact: String): CubeBuilder[TCube, TSource]

    Add dimension or fact to the result

    Add dimension or fact to the result

    dimensionOrFact

    dimension or fact which will be shown in result

    returns

    self

  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def where(specification: Specification[TSource]): CubeBuilder[TCube, TSource]

    Restrict analysis on data subset

    Restrict analysis on data subset

    specification

    use provided specification to filter data used for analysis

    returns

    self

Inherited from AnyRef

Inherited from Any

Ungrouped