All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.funqy.runtime.query.QueryListReader Maven / Gradle / Ivy

package io.quarkus.funqy.runtime.query;

import java.lang.reflect.Type;
import java.util.LinkedList;

/**
 * Value can be any primitive, primitive object, string, or bean style class
 *
 */
class QueryListReader extends BaseCollectionReader {

    public QueryListReader(Type genericType, QueryObjectMapper mapper) {
        super(genericType, mapper);
    }

    @Override
    public Object create() {
        return new LinkedList<>();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy