|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Filter | |
|---|---|
| net.sf.mmm.util.cli.api | Provides the API for utilities that help to build command-line-interfaces (CLI). |
| net.sf.mmm.util.collection.base | Contains public implementations of the
Collection-Util API. |
| net.sf.mmm.util.file.base | Contains public implementations of File-utilities. |
| net.sf.mmm.util.filter.base | Contains public implementations of the filtering-API. |
| net.sf.mmm.util.nls.impl.formatter | Contains the implementation of formatters for the native language support (NLS). |
| net.sf.mmm.util.reflect.api | Provides the API for utilities that help to deal with reflection. |
| net.sf.mmm.util.reflect.base | Contains the base-implementations of the
Reflection-Util API. |
| net.sf.mmm.util.resource.api | Provides the API for utilities that help to load
resources from arbitrary
sources. |
| net.sf.mmm.util.resource.base | Contains the base implementation of the
resource-API. |
| Uses of Filter in net.sf.mmm.util.cli.api |
|---|
| Classes in net.sf.mmm.util.cli.api that implement Filter | |
|---|---|
class |
CliOptionNameDefaultFilter
This is the default Filter used to decide if the
name or alias of a
CliOption is acceptable. |
| Uses of Filter in net.sf.mmm.util.collection.base |
|---|
| Fields in net.sf.mmm.util.collection.base declared as Filter | |
|---|---|
private Filter<E> |
FilteredIterator.filter
|
private Filter<E> |
FilteredIterable.filter
|
| Constructors in net.sf.mmm.util.collection.base with parameters of type Filter | |
|---|---|
FilteredIterable(Iterable<E> delegate,
Filter<E> filter)
The constructor. |
|
FilteredIterator(Iterator<E> delegate,
Filter<E> filter)
The constructor. |
|
| Uses of Filter in net.sf.mmm.util.file.base |
|---|
| Fields in net.sf.mmm.util.file.base declared as Filter | |
|---|---|
private Filter<String> |
FileStringFilterAdapter.filter
|
private Filter<File> |
FileFilterAdapter.filter
|
| Constructors in net.sf.mmm.util.file.base with parameters of type Filter | |
|---|---|
FileFilterAdapter(Filter<File> filter)
The constructor. |
|
FileStringFilterAdapter(Filter<String> filter)
The constructor. |
|
| Uses of Filter in net.sf.mmm.util.filter.base |
|---|
| Classes in net.sf.mmm.util.filter.base that implement Filter | |
|---|---|
class |
ConjunctionFilter<V>
This is an implementation of the Filter interface that combines a
given list of filters using a boolean Conjunction. |
class |
ConstantFilter<V>
This is an implementation of Filter that either accepts or rejects
all objects to filter. |
class |
FilterRuleChain<V>
This class implements a Filter that is based on a chain of
FilterRules. |
| Fields in net.sf.mmm.util.filter.base declared as Filter | |
|---|---|
private Filter<V>[] |
ConjunctionFilter.filterList
the filters to check. |
| Methods in net.sf.mmm.util.filter.base that return Filter | ||
|---|---|---|
static
|
ConstantFilter.getInstance(boolean accept)
This method gets the an instance of this class. |
|
| Constructors in net.sf.mmm.util.filter.base with parameters of type Filter | |
|---|---|
ConjunctionFilter(Conjunction conjunction,
Filter<V>... filters)
The constructor. |
|
| Uses of Filter in net.sf.mmm.util.nls.impl.formatter |
|---|
| Classes in net.sf.mmm.util.nls.impl.formatter that implement Filter | |
|---|---|
private class |
NlsFormatterChoice.Condition
This inner class represents a single choice. |
| Fields in net.sf.mmm.util.nls.impl.formatter declared as Filter | |
|---|---|
private Filter<Object> |
NlsFormatterChoice.Choice.condition
The condition that determines when the choice applies. |
private static Filter<Object> |
NlsFormatterChoice.FILTER_ELSE
The Filter for NlsFormatterChoice.CONDITION_ELSE. |
| Methods in net.sf.mmm.util.nls.impl.formatter that return Filter | |
|---|---|
private Filter<Object> |
NlsFormatterChoice.parseCondition(CharSequenceScanner scanner)
This method parses the NlsFormatterChoice.Condition. |
| Constructors in net.sf.mmm.util.nls.impl.formatter with parameters of type Filter | |
|---|---|
NlsFormatterChoice.Choice(Filter<Object> condition,
String result,
NlsArgument argument)
The constructor. |
|
| Uses of Filter in net.sf.mmm.util.reflect.api |
|---|
| Methods in net.sf.mmm.util.reflect.api with parameters of type Filter | |
|---|---|
Set<String> |
ReflectionUtil.findClassNames(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all classes that are located in the package identified by the given packageName. |
Set<String> |
ReflectionUtil.findClassNames(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all classes that are located in the package identified by the given packageName. |
Set<String> |
ReflectionUtil.findResourceNames(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<String> |
ReflectionUtil.findResourceNames(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtil.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtil.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
Set<Class<?>> |
ReflectionUtil.loadClasses(Collection<String> classNames,
ClassResolver classResolver,
Filter<? super Class<?>> filter)
This method loads the classes given as Collection of names by
classNames using the given classResolver. |
Set<Class<?>> |
ReflectionUtil.loadClasses(Collection<String> qualifiedClassNames,
Filter<? super Class<?>> filter)
This method loads the classes given as Collection of
fully qualified names by
qualifiedClassNames. |
| Uses of Filter in net.sf.mmm.util.reflect.base |
|---|
| Classes in net.sf.mmm.util.reflect.base that implement Filter | |
|---|---|
class |
AnnotationFilter
This is a filter that only accepts types
that are annotated with an
annotation given at construction. |
class |
AssignableFromFilter
This is a filter that only accepts types
that are assignable from a
special type. |
| Fields in net.sf.mmm.util.reflect.base declared as Filter | |
|---|---|
private Filter<String> |
ResourceCollector.filter
Filter to accept resource-names. |
private Filter<String> |
ClassNameCollector.filter
Filter to accept class-names. |
private Filter<String> |
ResourceNameCollector.filter
Filter to accept resource-names. |
| Methods in net.sf.mmm.util.reflect.base with parameters of type Filter | |
|---|---|
Set<String> |
ReflectionUtilImpl.findClassNames(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all classes that are located in the package identified by the given packageName. |
Set<String> |
ReflectionUtilImpl.findClassNames(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all classes that are located in the package identified by the given packageName. |
protected void |
ReflectionUtilImpl.findClassNames(String packageName,
boolean includeSubPackages,
Set<String> classSet,
Filter<String> filter,
ClassLoader classLoader)
|
Set<String> |
ReflectionUtilImpl.findResourceNames(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<String> |
ReflectionUtilImpl.findResourceNames(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtilImpl.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter)
This method finds all resources that are located in the package identified by the given packageName. |
Set<DataResource> |
ReflectionUtilImpl.findResources(String packageName,
boolean includeSubPackages,
Filter<String> filter,
ClassLoader classLoader)
This method finds all resources that are located in the package identified by the given packageName. |
Set<Class<?>> |
ReflectionUtilImpl.loadClasses(Collection<String> classNames,
ClassResolver classResolver,
Filter<? super Class<?>> filter)
This method loads the classes given as Collection of names by
classNames using the given classResolver. |
Set<Class<?>> |
ReflectionUtilImpl.loadClasses(Collection<String> qualifiedClassNames,
Filter<? super Class<?>> filter)
This method loads the classes given as Collection of
fully qualified names by
qualifiedClassNames. |
| Constructors in net.sf.mmm.util.reflect.base with parameters of type Filter | |
|---|---|
ClassNameCollector(Set<String> classNameSet,
Filter<String> filter)
The constructor. |
|
ResourceCollector(Set<DataResource> resourceSet,
Filter<String> filter)
The constructor. |
|
ResourceNameCollector(Set<String> resourceSet,
Filter<String> filter)
The constructor. |
|
| Uses of Filter in net.sf.mmm.util.resource.api |
|---|
| Methods in net.sf.mmm.util.resource.api with parameters of type Filter | |
|---|---|
Iterable<BrowsableResource> |
BrowsableResource.getChildResources(Filter<BrowsableResource> filter)
This method iterates the immediate child- resources contained in this BrowsableResource and are
accepted by the given filter. |
| Uses of Filter in net.sf.mmm.util.resource.base |
|---|
| Methods in net.sf.mmm.util.resource.base with parameters of type Filter | |
|---|---|
Iterable<BrowsableResource> |
AbstractBrowsableResourceProxy.getChildResources(Filter<BrowsableResource> filter)
This method iterates the immediate child- resources contained in this BrowsableResource and are
accepted by the given filter. |
Iterable<BrowsableResource> |
AbstractBrowsableResource.getChildResources(Filter<BrowsableResource> filter)
This method iterates the immediate child- resources contained in this BrowsableResource and are
accepted by the given filter. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||