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

javax0.jamal.prog.commands.Constant Maven / Gradle / Ivy

The newest version!
package javax0.jamal.prog.commands;

import javax0.jamal.api.BadSyntax;

import java.util.Objects;

public class Constant extends Expression {
    private final String value;

    public Constant(final String value) {
        this.value = Objects.requireNonNull(value);
    }

    @Override
    public String execute(final Context ctx) throws BadSyntax {
        ctx.step();
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy