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: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. 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

  5. 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

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. 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

  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. 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

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

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

    Definition Classes
    AnyRef → Any
  12. 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

  13. def finalize(): Unit

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

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

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

    Definition Classes
    Any
  17. 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

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

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

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

    Definition Classes
    AnyRef
  21. 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

  22. 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

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

    Definition Classes
    AnyRef
  24. 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

  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. 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

  27. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. 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