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

com.querydsl.codegen.utils.MethodEvaluator Maven / Gradle / Ivy

/*
 * Copyright 2010, Mysema Ltd
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.querydsl.codegen.utils;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Map;

/**
 * @author tiwe
 * 
 * @param 
 */
public final class MethodEvaluator implements Evaluator {

    private final Method method;

    private final Class projectionType;
    
    private final Object[] args;

    MethodEvaluator(Method method, Map constants, Class projectionType) {
        this.method = method;
        this.projectionType = projectionType;
        this.args = new Object[method.getParameterTypes().length];
        int i = args.length - constants.size();
        for (Object value : constants.values()) {
            args[i++] = value;
        }
    }

    @SuppressWarnings("unchecked")
    @Override
    public T evaluate(Object... args) {
        try {
            System.arraycopy(args, 0, this.args, 0, args.length);
            return (T) method.invoke(null, this.args);
        } catch (IllegalAccessException e) {
            throw new IllegalArgumentException(e);
        } catch (InvocationTargetException e) {
            throw new IllegalArgumentException(e);
        }
    }

    @Override
    public Class getType() {
        return projectionType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy