Android java.util Collection Filter

Android examples for java.util:Collection Filter

Description

Click the following links for the tutorial for java.util and Collection Filter.

  1. Answers true if a predicate is true for at least one element of a collection.
  2. find if any element in Collection meets the Predicate
  3. remove Element from Collection by Predicate
  4. replace Or Add element in Collection by Predicate
  5. filter Collection by android Predicate
  6. Returns the number of occurrences of obj in Collection.
  7. Returns true iff some element of a is also an element of b, between two Collection
  8. Returns a Collection containing the exclusive disjunction (symmetric difference) of the given Collection s.


  9. Returns a Map mapping each unique element in the given Collection to an Integer representing the number of occurances of that element in the Collection .
  10. Returns a Collection containing the intersection of the given Collection s.
  11. Returns true iff the given Collection s contain exactly the same elements with exactly the same cardinality.
  12. Returns true iff a is a proper sub-collection of b, that is, iff the cardinality of e in a is less than or equal to the cardinality of e in b, for each element e in a, and there is at least one element f such that the cardinality of f in b is strictly greater than the cardinality of f in a.
  13. Returns true iff a is a sub-collection of b, that is, iff the cardinality of e in a is less than or equal to the cardinality of e in b, for each element e in a.
  14. Returns a Collection containing a - b.
  15. Returns a Collection containing the union of the given Collection s.
  16. Filter the collection by applying a Predicate to each element.


  17. filter value from Collection by Predicate
  18. for Each value Filtered in a Collection
  19. remove All filtered value from Collection by Predicate