in src/main/java/org/apache/sling/repoinit/parser/operations/PropertyLine.java [68:74]
private static PropertyType parseType(String type) throws ParseException {
try {
return PropertyType.valueOf(type);
} catch(IllegalArgumentException e) {
throw new ParseException("Invalid property type:" + type);
}
}