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

com.itranswarp.search.SearchResults Maven / Gradle / Ivy

package com.itranswarp.search;

import java.util.List;

public class SearchResults {

	public final long hits;

	public final List results;

	public SearchResults(long hits, List results) {
		this.hits = hits;
		this.results = results;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy