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

javax0.jamal.api.EvaluableVerbatim Maven / Gradle / Ivy

package javax0.jamal.api;

/**
 * An {@link Evaluable} that is verbatim.
 * This means that the result of the evaluation will not be further evaluated.
 */
public interface EvaluableVerbatim extends Evaluable {
    default boolean isVerbatim() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy