package com.vtence.molecule.lib.matchers; public class Nothing<T> implements Matcher<T> { public boolean matches(T actual) { return false; } public static <T> Nothing<T> nothing() { return new Nothing<>(); } }