Package boofcv.io
Class SimpleStringNumberReader
java.lang.Object
boofcv.io.SimpleStringNumberReader
public class SimpleStringNumberReader extends Object
Reads one or more lines of pure numbers while skipping over lines which begin with the
comment character. Intended for use with simple config files.
-
Constructor Summary
Constructors Constructor Description SimpleStringNumberReader(char commentChar)
-
Method Summary
Modifier and Type Method Description char
getCommentChar()
double
getDouble()
String
getString()
boolean
isString()
boolean
next()
double
nextDouble()
String
nextString()
boolean
read(Reader input)
int
remainingTokens()
-
Constructor Details
-
SimpleStringNumberReader
public SimpleStringNumberReader(char commentChar)
-
-
Method Details
-
read
-
remainingTokens
public int remainingTokens() -
next
public boolean next() -
isString
public boolean isString() -
getString
-
getDouble
public double getDouble() -
nextString
-
nextDouble
public double nextDouble() -
getCommentChar
public char getCommentChar()
-