Java Utililty Methods StringReader Create

List of utility methods to do StringReader Create

Description

The list of methods to do StringReader Create are organized into topic(s).

Method

ReadergetReaderFromString(String s)
Create a reader to read from a string.
return s == null ? null : new StringReader(s);