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

com.github.leeonky.dal.ast.InputNode Maven / Gradle / Ivy

package com.github.leeonky.dal.ast;

import com.github.leeonky.dal.RuntimeContext;

public class InputNode extends Node {
    public static final InputNode INSTANCE = new InputNode();

    private InputNode() {
    }

    @Override
    public Object evaluate(RuntimeContext context) {
        return context.getInputValue();
    }

    @Override
    public String inspect() {
        return "";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy