com.hubspot.jinjava.lib.exptest.IsWithinExpTest 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
The newest version!
package com.hubspot.jinjava.lib.exptest;
import com.hubspot.jinjava.doc.annotations.JinjavaDoc;
@JinjavaDoc(value = "", aliasOf = "in")
public class IsWithinExpTest extends IsInExpTest {
@Override
public String getName() {
return "within";
}
}