A few useful collections.
-
Returns an unlimited selection of all (unspecified) choices.
Returns an intersection of this selection and that
.
Returns an intersection of this selection and the elements from set
.
Returns an empty selection.
Converts to Selection
from legacy code where an empty collection means all.
Selection.only(T... choices)
Returns a selection of choices
.
Parses
string
into a
Selection
of strings by treating the single
'*'
character as
all()
.
Parses
string
into a
Selection
by treating the single
'*'
character as
all()
, and delegating to
elementParser
to parse each explicit selection element.
Returns an union of this selection and that
.
Returns a union of this selection and the elements from set
.
Returns a collector that intersects the input selections.
Returns a collector that intersects the input selections.
Returns a collector that collects input elements into a limited selection.
Returns a collector that unions the input selections.
Returns a collector that unions the input selections.
Returns an intersection of this selection and that
.
Returns an union of this selection and that
.