|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectcom.jme3.network.Filters
public class Filters
Static utility methods pertaining to Filter instances.
コンストラクタの概要 | |
---|---|
Filters()
|
メソッドの概要 | ||
---|---|---|
|
equalTo(T value)
Creates a filter that returns true for inputs that are .equals() equivalent to the specified value. |
|
|
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. |
|
|
in(T... values)
Creates a filter that returns true for any value in the specified list of values and false for all other cases. |
|
|
not(Filter<T> f)
Creates a filter that returns true when the specified delegate filter returns false, and vice versa. |
|
|
notEqualTo(T value)
Creates a filter that returns true for inputs that are NOT .equals() equivalent to the specified value. |
|
|
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. |
|
|
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. |
クラス java.lang.Object から継承されたメソッド |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public Filters()
メソッドの詳細 |
---|
public <T> Filter<T> in(T... values)
public <T> Filter<T> in(java.util.Collection<? extends T> collection)
public <T> Filter<T> notIn(T... values)
public <T> Filter<T> notIn(java.util.Collection<? extends T> collection)
public <T> Filter<T> equalTo(T value)
public <T> Filter<T> notEqualTo(T value)
public <T> Filter<T> not(Filter<T> f)
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |