Interface PropertyEvaluator

All Known Implementing Classes:
DefaultPropertyEvaluator

public interface PropertyEvaluator
  • Method Details

    • load

      Collection<? extends EvaluatedRow<?,?>> load(String resourceId)
      Method which loads a given resource. The resource is a identifier used to build a physical path to property file containing localized attribute values. Method returns collection of evaluated rows. See EvaluatedRow for more details.
    • load

      Collection<? extends EvaluatedRow<?,?>> load(String resourceId, String key)
      Method which loads a given resource. The resource is a identifier used to build a physical path to property file containing localized attribute values. Adds additional key for filtering out localized properties not matching given type. Method returns collection of evaluated rows. See EvaluatedRow for more details.
    • setRowEvaluator

      void setRowEvaluator(RowsEvaluator<? extends EvaluatedRow<?,?>,?> rowEvaluator)