Uses of Interface
org.codehaus.mojo.jaxb2.shared.filters.Filter
-
Packages that use Filter Package Description org.codehaus.mojo.jaxb2 The jaxb2-maven-plugin wraps and adapts the JAXB reference implementation to be useful within the Maven build process.org.codehaus.mojo.jaxb2.javageneration The jaxb2-maven-plugin wraps and adapts the JAXB reference implementation to be useful within the Maven build process.org.codehaus.mojo.jaxb2.schemageneration The jaxb2-maven-plugin wraps and adapts the JAXB reference implementation to be useful within the Maven build process.org.codehaus.mojo.jaxb2.shared The jaxb2-maven-plugin wraps and adapts the JAXB reference implementation to be useful within the Maven build process.org.codehaus.mojo.jaxb2.shared.filters org.codehaus.mojo.jaxb2.shared.filters.pattern -
-
Uses of Filter in org.codehaus.mojo.jaxb2
Fields in org.codehaus.mojo.jaxb2 with type parameters of type Filter Modifier and Type Field Description static java.util.List<Filter<java.io.File>>AbstractJaxbMojo. STANDARD_EXCLUDE_FILTERSStandard excludes Filters for all Java generator Mojos. -
Uses of Filter in org.codehaus.mojo.jaxb2.javageneration
Fields in org.codehaus.mojo.jaxb2.javageneration with type parameters of type Filter Modifier and Type Field Description static java.util.List<Filter<java.io.File>>XjcMojo. STANDARD_SOURCE_EXCLUDE_FILTERSDefault exclude Filters for sources, used unless overridden by an explicit configuration in thexjcSourceExcludeFiltersparameter.static java.util.List<Filter<java.io.File>>TestXjcMojo. STANDARD_TEST_SOURCE_EXCLUDE_FILTERSDefault exclude Filters for test sources, used unless overridden by an explicit configuration in thetestSourceExcludeFiltersparameter.static java.util.List<Filter<java.io.File>>TestXjcMojo. STANDARD_TEST_XJB_EXCLUDE_FILTERSDefault List of exclude Filters for XJB files, unless overridden by providing an explicit configuration in thetestXjbExcludeFiltersparameter.static java.util.List<Filter<java.io.File>>XjcMojo. STANDARD_XJB_EXCLUDE_FILTERSDefault List of exclude Filters for XJB files, unless overridden by providing an explicit configuration in thexjbExcludeSuffixesparameter.private java.util.List<Filter<java.io.File>>TestXjcMojo. testSourceExcludeFiltersParameter holding a List of Filters, used to match all files under thetestSourcesdirectories which should not be considered XJC test source files.private java.util.List<Filter<java.io.File>>TestXjcMojo. testXjbExcludeFiltersParameter holding a List of Filters, used to match all files under thetestXjbSourcesdirectories which should not be considered XJB files.private java.util.List<Filter<java.io.File>>XjcMojo. xjbExcludeFiltersParameter holding a List of Filters, used to match all files under thexjbSourcesdirectories which should not be considered XJB files.private java.util.List<Filter<java.io.File>>XjcMojo. xjcSourceExcludeFiltersParameter holding a List of Filters, used to match all files under thesourcesdirectories which should not be considered XJC source files. -
Uses of Filter in org.codehaus.mojo.jaxb2.schemageneration
Fields in org.codehaus.mojo.jaxb2.schemageneration with type parameters of type Filter Modifier and Type Field Description static java.util.List<Filter<java.io.File>>AbstractXsdGeneratorMojo. CLASS_INCLUDE_FILTERSFilter list containing a PatternFileFilter including ".class" files.private java.util.List<Filter<java.io.File>>SchemaGenerationMojo. schemaSourceExcludeFiltersParameter holding a List of Filters, used to match all files under thesourcesdirectories which should not be considered SchemaGenerator source files.static java.util.List<Filter<java.io.File>>AbstractXsdGeneratorMojo. STANDARD_BYTECODE_EXCLUDE_FILTERSDefault exclude file name suffixes for testSources, used unless overridden by an explicit configuration in thetestSourceExcludeSuffixesparameter.static java.util.List<Filter<java.io.File>>SchemaGenerationMojo. STANDARD_SOURCE_EXCLUDE_FILTERSDefault exclude file name suffixes for sources, used unless overridden by an explicit configuration in thesourceExcludeSuffixesparameter.static java.util.List<Filter<java.io.File>>TestSchemaGenerationMojo. STANDARD_TEST_SOURCE_EXCLUDE_FILTERSDefault exclude file name suffixes for testSources, used unless overridden by an explicit configuration in thetestSchemaSourceExcludeFiltersparameter.private java.util.List<Filter<java.io.File>>TestSchemaGenerationMojo. testSchemaSourceExcludeFiltersParameter holding a List of Filters, used to match all files under thetestSourcesdirectories which should not be considered SchemaGenerator testSource files. -
Uses of Filter in org.codehaus.mojo.jaxb2.shared
Methods in org.codehaus.mojo.jaxb2.shared with parameters of type Filter Modifier and Type Method Description static java.util.List<java.io.File>FileSystemUtilities. filterFiles(java.util.List<java.io.File> files, Filter<java.io.File> acceptFilter, org.apache.maven.plugin.logging.Log log)Filters all supplied files using the providedacceptFilter.Method parameters in org.codehaus.mojo.jaxb2.shared with type arguments of type Filter Modifier and Type Method Description static java.util.List<java.io.File>FileSystemUtilities. listFiles(java.io.File fileOrDir, java.util.List<Filter<java.io.File>> fileFilters, boolean excludeFilterOperation, org.apache.maven.plugin.logging.Log log)If the supplied fileOrDir is a File, it is added to the returned List if any of the filters Match.static java.util.List<java.io.File>FileSystemUtilities. listFiles(java.io.File fileOrDir, java.util.List<Filter<java.io.File>> fileFilters, org.apache.maven.plugin.logging.Log log)If the supplied fileOrDir is a File, it is added to the returned List if any of the filters Match. -
Uses of Filter in org.codehaus.mojo.jaxb2.shared.filters
Classes in org.codehaus.mojo.jaxb2.shared.filters that implement Filter Modifier and Type Class Description classAbstractFilter<T>Abstract Filter implementation which handles separatingnullcandidate values from non-null ones, and delegates processing to concrete subclass implementations.Methods in org.codehaus.mojo.jaxb2.shared.filters with parameters of type Filter Modifier and Type Method Description static java.io.FileFilterFilters. adapt(Filter<java.io.File> toAdapt)Adapts the Filter specification to the FileFilter interface, to enable immediate use for filtering File lists.static <T> voidFilters. initialize(org.apache.maven.plugin.logging.Log log, Filter<T>... filters)Initializes the supplied Filters by assigning the given Log.Method parameters in org.codehaus.mojo.jaxb2.shared.filters with type arguments of type Filter Modifier and Type Method Description static java.util.List<java.io.FileFilter>Filters. adapt(java.util.List<Filter<java.io.File>> toAdapt)Adapts the supplied List of Filter specifications to a List of FileFilters.static <T> voidFilters. initialize(org.apache.maven.plugin.logging.Log log, java.util.List<Filter<T>> filters)Initializes the supplied Filters by assigning the given Log.static <T> booleanFilters. matchAtLeastOnce(T object, java.util.List<Filter<T>> filters)Algorithms for accepting the supplied object if at least one of the supplied Filters accepts it.static <T> booleanFilters. noFilterMatches(T object, java.util.List<Filter<T>> filters)Algorithms for rejecting the supplied object if at least one of the supplied Filters rejects it.static <T> booleanFilters. rejectAtLeastOnce(T object, java.util.List<Filter<T>> filters)Algorithms for rejecting the supplied object if at least one of the supplied Filters does not accept it. -
Uses of Filter in org.codehaus.mojo.jaxb2.shared.filters.pattern
Classes in org.codehaus.mojo.jaxb2.shared.filters.pattern that implement Filter Modifier and Type Class Description classAbstractPatternFilter<T>AbstractFilter implementation containing a Java Pattern which should be used to determine if candidate T objects match any of the supplied regularExpressions.classFileFilterAdapterFilter implementation adapting a FileFilter instance to the Filter interface.classPatternFileFilterAbstractPatternFilter and FileFilter combination, using a set of Regular expressions to accept the canonical absolute paths to Files.classPatternURLFilterAbstractPatternFilter matching the string of URLs with to a set of Regular expressions.Methods in org.codehaus.mojo.jaxb2.shared.filters.pattern that return types with arguments of type Filter Modifier and Type Method Description static java.util.List<Filter<java.io.File>>PatternFileFilter. createExcludeFilterList(org.apache.maven.plugin.logging.Log log, java.lang.String... patterns)Creates a new List containing an exclude-mode PatternFileFilter using the supplied patternStrings which are interpreted as file suffixes.private static java.util.List<Filter<java.io.File>>PatternFileFilter. createFilterList(org.apache.maven.plugin.logging.Log log, boolean includeOperation, java.lang.String... patterns)static java.util.List<Filter<java.io.File>>PatternFileFilter. createIncludeFilterList(org.apache.maven.plugin.logging.Log log, java.lang.String... patterns)Creates a new List containing an include-mode PatternFileFilter using the supplied patternStrings which are interpreted as file suffixes.
-