com.bluecatcode.common.predicates.IsInstancePredicate Maven / Gradle / Ivy
The newest version!
package com.bluecatcode.common.predicates;
import com.google.common.base.Predicate;
import javax.annotation.Nullable;
import java.util.Arrays;
import static com.google.common.base.Preconditions.checkArgument;
/**
* Checks if the input object is an instance of any of provided class(es)
*/
public class IsInstancePredicate implements Predicate