object EvaluationContext extends LazyLogging
- Alphabetic
- By Inheritance
- EvaluationContext
- LazyLogging
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
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
-
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
-
sealed
trait
FieldAccessor extends AnyRef
Trait for reading a field from an evaluation context
- class FieldValueAccessor extends FieldAccessor
- class GlobalFieldAccessor extends FieldAccessor
-
implicit final
class
RichEvaluationContext extends AnyVal
Evaluation context accessors
-
class
StatefulEvaluationContext extends EvaluationContext
Evaluation context implementation
Value Members
- val FilterKey: String
- val InputFilePathKey: String
-
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
-
def
empty: EvaluationContext
Creates a new, empty evaluation context
-
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
- object NullFieldAccessor extends FieldAccessor with Product with Serializable