Package java.io
Class CharArrayReader

Public Constructor CharArrayReader

CharArrayReader(char[] buf)

CharArrayReader(char[] buf, int offset, int length)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

constructor CharArrayReader(char[] buf):

Constructs an CharArrayReader from the specified array of chars.

constructor CharArrayReader(char[] buf, int offset, int length):

Constructs an CharArrayReader from the specified array of chars. The buf parameter defines the size of the input buffer. The offset parameter defines the offset of the first character to read. The length parameter defines the number of chars to read.