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

com.hubspot.jinjava.lib.exptest.IsDefinedExpTest Maven / Gradle / Ivy

There is a newer version: 2.7.3
Show newest version
package com.hubspot.jinjava.lib.exptest;

import com.hubspot.jinjava.doc.annotations.JinjavaDoc;
import com.hubspot.jinjava.doc.annotations.JinjavaSnippet;
import com.hubspot.jinjava.interpret.JinjavaInterpreter;

@JinjavaDoc(
    value = "Return true if the variable is defined",
    snippets = {
        @JinjavaSnippet(
            code = "{% if variable is defined %}\n" +
                "\n" +
                "{% endif %}")
    })
public class IsDefinedExpTest implements ExpTest {

  @Override
  public String getName() {
    return "defined";
  }

  @Override
  public boolean evaluate(Object var, JinjavaInterpreter interpreter, Object... args) {
    return var != null;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy