*
* @return
* @throws TikzParserException
*/
private TikzPathType readPathType() throws TikzParserException {
TikzPathType pt = null;
String stringType = null;
try {
stringType = readWord();
p("stringType gelesen");
pt = TikzPathType.valueOf(stringType.toUpperCase());