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

io.redlink.sdk.impl.search.model.SearchResults Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.redlink.sdk.impl.search.model;

import java.util.Iterator;
import java.util.List;
import java.util.Queue;
import java.util.concurrent.LinkedBlockingQueue;

public class SearchResults implements Iterator {

    private int totalResults;

    private int startIndex;

    private int itemsPerPage;

    private Queue results;

    public int getTotalResults() {
        return totalResults;
    }

    public void setTotalResults(int totalResults) {
        this.totalResults = totalResults;
    }

    public int getStartIndex() {
        return startIndex;
    }

    public void setStartIndex(int startIndex) {
        this.startIndex = startIndex;
    }

    public int getItemsPerPage() {
        return itemsPerPage;
    }

    public void setItemsPerPage(int itemsPerPage) {
        this.itemsPerPage = itemsPerPage;
    }

    public void setResults(List results) {
        this.results = new LinkedBlockingQueue(results);
    }

    @Override
    public boolean hasNext() {
        return !results.isEmpty();
    }

    @Override
    public SearchResult next() {
        //TODO: implement next page loading if empty?
        return results.poll();
    }

    @Override
    public void remove() {
        results.poll();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy