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

fr.lecomptoirdespharmacies.medipim.api.query.PaginatedResponse Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package fr.lecomptoirdespharmacies.medipim.api.query;


import java.util.List;
import org.apache.commons.collections4.CollectionUtils;

public record PaginatedResponse(boolean isExhaustive,
                                   List results) {

    public boolean isEmpty() {
        return CollectionUtils.isEmpty(results);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy