Package proguard.io

Class NameFilteredDataEntryWriter

    • Constructor Detail

      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(java.lang.String regularExpression,
                                           DataEntryWriter acceptedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to the given writer, depending on the given list of filters.
      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(java.lang.String regularExpression,
                                           DataEntryWriter acceptedDataEntryWriter,
                                           DataEntryWriter rejectedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to either of the two given writers, depending on the given list of filters.
      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(java.util.List regularExpressions,
                                           DataEntryWriter acceptedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to the given writer, depending on the given list of filters.
      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(java.util.List regularExpressions,
                                           DataEntryWriter acceptedDataEntryWriter,
                                           DataEntryWriter rejectedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to either of the two given writers, depending on the given list of filters.
      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(StringMatcher stringMatcher,
                                           DataEntryWriter acceptedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to the given writer, depending on the given string matcher.
      • NameFilteredDataEntryWriter

        public NameFilteredDataEntryWriter​(StringMatcher stringMatcher,
                                           DataEntryWriter acceptedDataEntryWriter,
                                           DataEntryWriter rejectedDataEntryWriter)
        Creates a new NameFilteredDataEntryWriter that delegates to either of the two given writers, depending on the given string matcher.