Class CharacterSetFilterReader
java.lang.Object
java.io.Reader
java.io.FilterReader
org.apache.commons.io.input.AbstractCharacterFilterReader
org.apache.commons.io.input.CharacterSetFilterReader
- All Implemented Interfaces:
Closeable, AutoCloseable, Readable
-
Field Summary
Fields inherited from class AbstractCharacterFilterReader
SKIP_NONEFields inherited from class FilterReader
in -
Constructor Summary
ConstructorsConstructorDescriptionCharacterSetFilterReader(Reader reader, Integer... skip) Constructs a new reader.CharacterSetFilterReader(Reader reader, Set<Integer> skip) Constructs a new reader. -
Method Summary
Methods inherited from class AbstractCharacterFilterReader
filter, read, readMethods inherited from class FilterReader
close, mark, markSupported, ready, reset, skipMethods inherited from class Reader
nullReader, of, read, read, readAllAsString, readAllLines, transferTo
-
Constructor Details
-
CharacterSetFilterReader
Constructs a new reader.- Parameters:
reader- the reader to filter.skip- the set of characters to filter out.- Since:
- 2.9.0
-
CharacterSetFilterReader
Constructs a new reader.- Parameters:
reader- the reader to filter.skip- the set of characters to filter out.
-