private static PropertyType parseType()

in src/main/java/org/apache/sling/repoinit/parser/operations/PropertyLine.java [71:77]


    private static PropertyType parseType(String type) throws ParseException {
        try {
            return PropertyType.valueOf(type);
        } catch (IllegalArgumentException e) {
            throw new ParseException("Invalid property type:" + type);
        }
    }