Interface EvaluationContextFactory

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface EvaluationContextFactory
Factory interface for creating EvaluationContext instances.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.expression.EvaluationContext
    create(Object contextRoot)
    Creates an evaluation context for the given context root.
  • Method Details

    • create

      org.springframework.expression.EvaluationContext create(Object contextRoot)
      Creates an evaluation context for the given context root.
      Parameters:
      contextRoot - the root object for evaluation.
      Returns:
      the evaluation context.