Utilities.
| Type Params | Return Type | Name and description |
|---|---|---|
|
static java.util.List<java.lang.String> |
getLines(java.lang.String inputPath)Returns the lines of the file at the input path. |
|
static java.util.List<java.lang.String> |
getLines(java.io.File inputFile)Returns the lines of the parameter file. |
|
static java.io.File |
writeLines(java.util.List<java.lang.String> patchedLines, java.lang.String outputPath, java.nio.charset.Charset charset) |
|
static java.io.File |
writeLines(java.util.List<java.lang.String> patchedLines, java.io.File outputFile, java.nio.charset.Charset charset) |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Returns the lines of the file at the input path.
inputPath - The input path to read fromReturns the lines of the parameter file.
inputFile - The input file to read from