Uses of Interface
org.codehaus.mojo.jaxb2.shared.filters.pattern.StringConverter
Packages that use StringConverter
-
Uses of StringConverter in org.codehaus.mojo.jaxb2.shared.filters.pattern
Classes in org.codehaus.mojo.jaxb2.shared.filters.pattern that implement StringConverterModifier and TypeClassDescriptionclass
Trivial converter using thetoString()
method to convert a T object to a String.Fields in org.codehaus.mojo.jaxb2.shared.filters.pattern declared as StringConverterModifier and TypeFieldDescriptionprivate StringConverter
<T> AbstractPatternFilter.converter
static final StringConverter
<File> PatternFileFilter.FILE_PATH_CONVERTER
Converter returning the canonical and absolute path for a File.static final StringConverter
<URL> PatternURLFilter.NORMALIZED_URL_CONVERTER
Converter returning each URL'stoString()
form, after normalizing it, using the algorithmtoConvert.toURI().normalize().toURL().toString();
Methods in org.codehaus.mojo.jaxb2.shared.filters.pattern with parameters of type StringConverterModifier and TypeMethodDescriptionvoid
AbstractPatternFilter.setConverter
(StringConverter<T> converter) Assigns the StringConverter used to convert T-type objects to Strings.Constructors in org.codehaus.mojo.jaxb2.shared.filters.pattern with parameters of type StringConverterModifierConstructorDescriptionPatternFileFilter
(boolean processNullValues, String patternPrefix, List<String> patterns, StringConverter<File> converter, boolean acceptCandidateOnPatternMatch) Compound constructor creating an PatternFileFilter from the supplied parameters.PatternURLFilter
(boolean processNullValues, String patternPrefix, List<String> patterns, StringConverter<URL> converter, boolean acceptCandidateOnPatternMatch) Compound constructor creating an ExclusionRegularExpressionURLFilter from the supplied parameters.