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

com.alibaba.qlexpress4.runtime.context.MapExpressContext Maven / Gradle / Ivy

package com.alibaba.qlexpress4.runtime.context;

import com.alibaba.qlexpress4.runtime.Value;
import com.alibaba.qlexpress4.runtime.data.MapItemValue;

import java.util.Map;

/**
 * Author: DQinYuan
 */
public class MapExpressContext implements ExpressContext {

    private final Map source;

    public MapExpressContext(Map source) {
        this.source = source;
    }

    @Override
    public Value get(Map attachments, String variableName) {
        return new MapItemValue(source, variableName);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy