
com.hubspot.jinjava.lib.exptest.IsNoneExpTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jinjava Show documentation
Show all versions of jinjava Show documentation
Jinja templating engine implemented in Java
package com.hubspot.jinjava.lib.exptest;
import com.hubspot.jinjava.doc.annotations.JinjavaDoc;
import com.hubspot.jinjava.doc.annotations.JinjavaParam;
import com.hubspot.jinjava.doc.annotations.JinjavaSnippet;
import com.hubspot.jinjava.interpret.JinjavaInterpreter;
@JinjavaDoc(
value = "Return true if the given object is null / none",
input = @JinjavaParam(value = "object", type = "object", required = true),
snippets = {
@JinjavaSnippet(
code = "{% unless variable is none %}\n" +
" \n" +
"{% endunless %}"
),
}
)
public class IsNoneExpTest implements ExpTest {
@Override
public String getName() {
return "none";
}
@Override
public boolean evaluate(Object var, JinjavaInterpreter interpreter, Object... args) {
return var == null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy