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

com.github.mustachejava.reflect.guards.NullGuard Maven / Gradle / Ivy

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;
  }

  public String toString() {
    return "[NullGuard]";
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy