I want to use Lambdaj and hamcrest matchers to simply check if sample string contains at least one of the list's item.
private static List<String> FIELDS=Arrays.asList("one","two","three","four");
String myString="This string may contain 'one' word or 'two' word";
boolean stringContainsItem=filter(Matchers.containsString(myString),FIELDS).isEmpty();
but the matcher is incorrect. I need in that place some inverted Matcher, which check if myString contains lists's item.