Interface EvaluationValueConverterIfc
-
- All Known Implementing Classes:
DefaultEvaluationValueConverter
public interface EvaluationValueConverterIfcConverter interface to be implemented by configurable evaluation value converters. Converts an arbitrary object to anEvaluationValue, using the specified configuration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationValueconvertObject(java.lang.Object object, ExpressionConfiguration configuration)Called whenever an object has to be converted to anEvaluationValue.
-
-
-
Method Detail
-
convertObject
EvaluationValue convertObject(java.lang.Object object, ExpressionConfiguration configuration)
Called whenever an object has to be converted to anEvaluationValue.- Parameters:
object- The object holding the value.configuration- The configuration to use.- Returns:
- The converted
EvaluationValue. - Throws:
java.lang.IllegalArgumentException- if the object can't be converted.
-
-