public NoSqlData()

in src/main/java/org/apache/sling/nosql/generic/adapter/NoSqlData.java [38:50]


    public NoSqlData(String path, Map<String, Object> properties, MultiValueMode multiValueMode) {
        this.path = path;
        switch (multiValueMode) {
            case ARRAYS:
                this.properties = properties;
                break;
            case LISTS:
                this.properties = MapConverter.mapListToArray(properties);
                break;
            default:
                throw new IllegalArgumentException("Multi value mode not supported: " + multiValueMode);
        }
    }