All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.Evaluator Maven / Gradle / Ivy

The newest version!
package com.google.sitebricks;

import com.google.inject.ImplementedBy;
import org.jetbrains.annotations.Nullable;

/**
 * @author Dhanji R. Prasanna ([email protected])
 */
@ImplementedBy(MvelEvaluator.class)
public interface Evaluator {
    @Nullable
    Object evaluate(String expr, Object bean);

    void write(String expr, Object bean, Object value);

    Object read(String property, Object contextObject);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy