public abstract class SimpleWidgetQuery<K extends SimpleText & SimpleIdentifiable> extends SimpleQuery<SimpleWidgetQuery<K>,K,ClientContext>
ctx| Modifier and Type | Method and Description |
|---|---|
SimpleWidgetQuery<K> |
filter(int... ids)
Will filter out all items whose id isn't one of the elements inside of the {ids} array
|
SimpleWidgetQuery<K> |
filter(java.lang.String... texts)
Will filter out all items whose name isn't one of the elements inside of the {names} array
|
SimpleWidgetQuery<K> |
filterContains(java.lang.String... texts)
Will filter out all items whose text does not contain any of the given strings in {texts}.
|
contains, filter, isEmpty, iterator, next, peekNext, populate, population, reverse, shuffle, size, sort, toStreampublic SimpleWidgetQuery<K> filter(java.lang.String... texts)
texts - array of text for our filterpublic SimpleWidgetQuery<K> filterContains(java.lang.String... texts)
texts - Strings to check the items in our query againstpublic SimpleWidgetQuery<K> filter(int... ids)
ids - array of ids for our filter