com.github.mustachejava.reflect.guards.NullGuard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Implementation of mustache.js for Java
package com.github.mustachejava.reflect.guards;
import com.github.mustachejava.reflect.Guard;
public class NullGuard implements Guard {
@Override
public boolean apply(Object[] objects) {
return objects[0] == null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy