Package | Description |
---|---|
org.openide.util |
A set of
utility classes
covering a few general infrastructure points in the Open APIs.
|
Modifier and Type | Method and Description |
---|---|
static <T,R> Enumeration<R> |
Enumerations.convert(Enumeration<? extends T> en,
Enumerations.Processor<T,R> processor)
For each element of the input enumeration
en asks the
Enumerations.Processor to provide a replacement. |
static <T,R> Enumeration<R> |
Enumerations.filter(Enumeration<? extends T> en,
Enumerations.Processor<T,R> filter)
Filters some elements out from the input enumeration.
|
static <T,R> Enumeration<R> |
Enumerations.queue(Enumeration<? extends T> en,
Enumerations.Processor<T,R> filter)
Support for breadth-first enumerating.
|