in src/main/java/org/apache/sling/jcr/webconsole/internal/NodeTypeConfigurationPrinter.java [96:108]
private void printConstraints(PrintWriter pw, PropertyDefinition prop) throws RepositoryException {
if (prop.getValueConstraints() != null && prop.getValueConstraints().length > 0) {
pw.print(" < ");
boolean first = true;
for (String s : prop.getValueConstraints()) {
if (!first) {
pw.print(", ");
}
pw.print(s);
first = false;
}
}
}