程序包 proguard.io
类 NameFilteredDataEntryWriter
- java.lang.Object
-
- proguard.io.FilteredDataEntryWriter
-
- proguard.io.NameFilteredDataEntryWriter
-
- 所有已实现的接口:
java.lang.AutoCloseable,DataEntryWriter
public class NameFilteredDataEntryWriter extends FilteredDataEntryWriter
ThisDataEntryWriterdelegates to one of two otherDataEntryWriterinstances, depending on the name of the data entry.
-
-
构造器概要
构造器 构造器 说明 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(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(java.util.List regularExpressions, DataEntryWriter acceptedDataEntryWriter)Creates a new NameFilteredDataEntryWriter that delegates to the given writer, depending on the given list of filters.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(StringMatcher stringMatcher, DataEntryWriter acceptedDataEntryWriter)Creates a new NameFilteredDataEntryWriter that delegates to the given writer, depending on the given string matcher.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.
-
方法概要
-
从类继承的方法 proguard.io.FilteredDataEntryWriter
close, createDirectory, createOutputStream, println, sameOutputStream
-
-
-
-
构造器详细资料
-
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.
-
-