Packages

t

org.checkita.dqf.core.metrics

RegularMetric

trait RegularMetric extends Serializable

Base class for source metric. All source metrics should have defined following:

  • metric ID
  • metric name
  • source ID over which metric is calculated
  • columns used for metric calculation
  • method to init metric calculator
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RegularMetric
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def initDFMetricCalculator(columns: Seq[String]): DFMetricCalculator

    Inits DF metric calculator.

    Inits DF metric calculator.

    columns

    Sequence of columns this metric refers to.

    returns

    Initial state of DF metric calculator.

    Note

    It is allowed to use * in order to refer all source columns. In this case value of metricColumns will be the sequence with only one element: *. It is required to expand the star with actual list of source columns. But that information will only be available during metric processing after the source metadata is being retrieved. Thus, the expansion of * will be performed during metric processing and DF metric calculator will be initialized with actual list of source columns passed as columns argument.

  2. abstract def initRDDMetricCalculator: RDDMetricCalculator

    Inits RDD metric calculator.

    Inits RDD metric calculator.

    returns

    Initial state of RDD metric calculator.

  3. abstract val metricColumns: Seq[String]
  4. abstract val metricId: String
  5. abstract val metricName: MetricName
  6. abstract val metricSource: String

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped