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

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

There is a newer version: 0.9.14
Show newest version
package com.github.mustachejava.reflect;

import javax.annotation.Nullable;

import com.google.common.base.Predicate;

public class NullGuard implements Predicate {
  @Override
  public boolean apply(@Nullable Object[] objects) {
    return objects[0] == null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy