public Collection toCollection()

in src/main/java/org/apache/sling/scripting/sightly/render/AbstractRuntimeObjectModel.java [120:125]


    public Collection<Object> toCollection(Object object) {
        if (object instanceof Record) {
            return ((Record) object).getPropertyNames();
        }
        return ObjectModel.toCollection(object);
    }