public static class StreamsReadersWriters.CaseChangeReader extends FilterReader
Character, thus NOT localized.
Does NOT treat supplementary characters (two Java-characters <-> one Unicode codepoint
above 0x1_0000).in| Constructor and Description |
|---|
CaseChangeReader(Reader in,
boolean toUpper) |
| Modifier and Type | Method and Description |
|---|---|
char |
changeCase(char c) |
int |
read() |
int |
read(char[] buf,
int off,
int len) |
close, mark, markSupported, ready, reset, skippublic CaseChangeReader(Reader in, boolean toUpper)
toUpper - convert to upper case, not to lower case.public int read(char[] buf,
int off,
int len)
throws IOException
read in class FilterReaderIOExceptionpublic int read()
throws IOException
read in class FilterReaderIOExceptionpublic char changeCase(char c)
see also the complete user documentation .