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

com.lyncode.jtwig.functions.parameters.resolve.api.ParameterResolver Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.functions.parameters.resolve.api;

import com.google.common.base.Optional;
import com.lyncode.jtwig.functions.reflection.JavaMethodParameter;

public interface ParameterResolver {
    Optional resolve (JavaMethodParameter parameter);

    public static class Value {
        private final Object value;

        public Value(Object value) {
            this.value = value;
        }

        public Object value() {
            return value;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy