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

com.mysema.codegen.Evaluator Maven / Gradle / Ivy

/*
 * Copyright (c) 2010 Mysema Ltd.
 * All rights reserved.
 * 
 */
package com.mysema.codegen;

/**
 * Evaluator defines an interface for returning a value as a result of
 * evaluating an expression using the given argument array
 * 
 * @author tiwe
 * 
 */
public interface Evaluator {

    /**
     * @param args
     * @return
     */
    T evaluate(Object... args);

    /**
     * @return
     */
    Class getType();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy