Uses of Interface
org.codehaus.mojo.jaxb2.shared.filters.pattern.StringConverter
-
Packages that use StringConverter Package Description org.codehaus.mojo.jaxb2.shared.filters.pattern -
-
Uses of StringConverter in org.codehaus.mojo.jaxb2.shared.filters.pattern
Classes in org.codehaus.mojo.jaxb2.shared.filters.pattern that implement StringConverter Modifier and Type Class Description class
ToStringConverter<T>
Trivial converter using thetoString()
method to convert a T object to a String.Fields in org.codehaus.mojo.jaxb2.shared.filters.pattern declared as StringConverter Modifier and Type Field Description private StringConverter<T>
AbstractPatternFilter. converter
static StringConverter<java.io.File>
PatternFileFilter. FILE_PATH_CONVERTER
Converter returning the canonical and absolute path for a File.static StringConverter<java.net.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 StringConverter Modifier and Type Method Description void
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 StringConverter Constructor Description PatternFileFilter(boolean processNullValues, java.lang.String patternPrefix, java.util.List<java.lang.String> patterns, StringConverter<java.io.File> converter, boolean acceptCandidateOnPatternMatch)
Compound constructor creating an PatternFileFilter from the supplied parameters.PatternURLFilter(boolean processNullValues, java.lang.String patternPrefix, java.util.List<java.lang.String> patterns, StringConverter<java.net.URL> converter, boolean acceptCandidateOnPatternMatch)
Compound constructor creating an ExclusionRegularExpressionURLFilter from the supplied parameters.
-