Package proguard.io

Class NameFilteredDataEntryReader

    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(java.lang.String regularExpression,
                                           DataEntryReader acceptedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to the given reader, depending on the given list of filters.
      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(java.lang.String regularExpression,
                                           DataEntryReader acceptedDataEntryReader,
                                           DataEntryReader rejectedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to either of the two given readers, depending on the given list of filters.
      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(java.util.List regularExpressions,
                                           DataEntryReader acceptedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to the given reader, depending on the given list of filters.
      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(java.util.List regularExpressions,
                                           DataEntryReader acceptedDataEntryReader,
                                           DataEntryReader rejectedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to either of the two given readers, depending on the given list of filters.
      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(StringMatcher stringMatcher,
                                           DataEntryReader acceptedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to the given reader, depending on the given string matcher.
      • NameFilteredDataEntryReader

        public NameFilteredDataEntryReader​(StringMatcher stringMatcher,
                                           DataEntryReader acceptedDataEntryReader,
                                           DataEntryReader rejectedDataEntryReader)
        Creates a new NameFilteredDataEntryReader that delegates to either of the two given readers, depending on the given string matcher.