:グアバのIterables.any()でコンパイル時エラー
Iterables.any(Lists.<String>newArrayList(), new Predicate<String>() {
@Override
public boolean apply(final String arg0) {
// TODO Auto-generated method stub
return false;
}
});
エラー:
The method any(
Iterable<T>, Predicate<? super T>
) in the type Iterables is not applicable for the arguments (ArrayList<String>, new
Predicate<String>(){}
)
私が間違っているのか?私は愚かな間違いをしているように感じる。
あなたの輸入品はどのように見えますか? – Brigham