Package com.badlogic.gdx.utils
Interface Predicate<T>
-
public interface Predicate<T>Interface used to select items within an iterator against a predicate.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPredicate.PredicateIterable<T>static classPredicate.PredicateIterator<T>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanevaluate(T arg0)
-
-
-
Method Detail
-
evaluate
boolean evaluate(T arg0)
- Returns:
- true if the item matches the criteria and should be included in the iterator's items
-
-