object EvaluationContext extends LazyLogging

Linear Supertypes
LazyLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EvaluationContext
  2. LazyLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait ContextDependent[T <: ContextDependent[T]] extends AnyRef

    Marker trait for resources that are dependent on the evaluation context state

    Marker trait for resources that are dependent on the evaluation context state

    T

    type

  2. case class EvaluationError(field: String, line: Long, e: Throwable) extends Product with Serializable

    Evaluation error

    Evaluation error

    field

    field name that had an error

    line

    line number of the input being evaluated

    e

    error

  3. sealed trait FieldAccessor extends AnyRef

    Trait for reading a field from an evaluation context

  4. class FieldValueAccessor extends FieldAccessor
  5. class GlobalFieldAccessor extends FieldAccessor
  6. implicit final class RichEvaluationContext extends AnyVal

    Evaluation context accessors

  7. class StatefulEvaluationContext extends EvaluationContext

    Evaluation context implementation

Value Members

  1. val FilterKey: String
  2. val InputFilePathKey: String
  3. def apply(fields: Seq[Field], globalValues: Map[String, _ <: AnyRef], caches: Map[String, EnrichmentCache], metrics: ConverterMetrics, success: Counter, failure: Counter): EvaluationContext

    Creates a new evaluation context with the given state

    Creates a new evaluation context with the given state

    fields

    converter fields, in topological dependency order

    globalValues

    global values

    caches

    enrichment caches

    metrics

    metrics

    success

    success counter

    failure

    failure counter

  4. def empty: EvaluationContext

    Creates a new, empty evaluation context

  5. def inputFileParam(file: String): Map[String, AnyRef]

    Gets a global parameter map containing the input file path

    Gets a global parameter map containing the input file path

    file

    input file path

  6. object NullFieldAccessor extends FieldAccessor with Product with Serializable