V - is the generic type of the value to check.public interface Filter<V>
decides if a given value is acceptable or
should be filtered. java.util.function.Predicate.| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(V value)
This method determines if the given
value should be accepted. |
boolean accept(V value)
value should be accepted.value - is the value to check.true if the given value is acceptable, false if it should
be filtered.Copyright © 2001–2015 mmm-Team. All rights reserved.