Skip to content

Instantly share code, notes, and snippets.

@jgeraerts
Created October 24, 2011 08:32
Show Gist options
  • Save jgeraerts/1308591 to your computer and use it in GitHub Desktop.
Save jgeraerts/1308591 to your computer and use it in GitHub Desktop.
public boolean isHasSelections(){
return Iterables.any(
getFacetValues(),new Predicate<FacetValue>() {
@Override
public boolean apply(@Nullable FacetValue facetValue) {
return facetValue.isSelected();
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment