|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.jme3.network.Filters
public class Filters
Static utility methods pertaining to Filter instances.
Constructor Summary | |
---|---|
Filters()
|
Method Summary | ||
---|---|---|
static
|
equalTo(T value)
Creates a filter that returns true for inputs that are .equals() equivalent to the specified value. |
|
static
|
in(java.util.Collection<? extends T> collection)
Creates a filter that returns true for any value in the specified collection and false for all other cases. |
|
static
|
in(T... values)
Creates a filter that returns true for any value in the specified list of values and false for all other cases. |
|
static
|
not(Filter<T> f)
Creates a filter that returns true when the specified delegate filter returns false, and vice versa. |
|
static
|
notEqualTo(T value)
Creates a filter that returns true for inputs that are NOT .equals() equivalent to the specified value. |
|
static
|
notIn(java.util.Collection<? extends T> collection)
Creates a filter that returns true for any value NOT in the specified collection and false for all other cases. |
|
static
|
notIn(T... values)
Creates a filter that returns true for any value NOT in the specified list of values and false for all other cases. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Filters()
Method Detail |
---|
public static <T> Filter<T> in(T... values)
public static <T> Filter<T> in(java.util.Collection<? extends T> collection)
public static <T> Filter<T> notIn(T... values)
public static <T> Filter<T> notIn(java.util.Collection<? extends T> collection)
public static <T> Filter<T> equalTo(T value)
public static <T> Filter<T> notEqualTo(T value)
public static <T> Filter<T> not(Filter<T> f)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |