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

io.honeybadger.com.github.mustachejava.reflect.Guard Maven / Gradle / Ivy

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

import java.util.List;

/**
 * Simple specialization of Predicate
 */
public interface Guard {
  boolean apply(List input);
}