* Use a Builder
*/
@Deprecated
<<<<<<< HEAD
public SearchQuery(String term, Selection selection, Iterable includedPublishers, float titleWeighting, float broadcastWeighting, float availabilityWeighting) {
this(term, selection, Sets.newHashSet(), includedPublishers, titleWeighting, broadcastWeighting, availabilityWeighting, Maybe.nothing(), Maybe.nothing());
}
/**
* Use a Builder
*/
@Deprecated
public SearchQuery(String term, Selection selection, Iterable includedSpecializations, Iterable includedPublishers, float titleWeighting, float broadcastWeighting, float availabilityWeighting) {
this(term, selection, includedSpecializations, includedPublishers, titleWeighting, broadcastWeighting, availabilityWeighting, Maybe.nothing(), Maybe.nothing());
}
/**
* Use a Builder
*/
@Deprecated
public SearchQuery(String term, Selection selection, float titleWeighting, float broadcastWeighting, float availabilityWeighting, Maybe priorityChannelWeighting, Maybe firstBroadcastWeighting) {
this(term, selection, Sets.newHashSet(), Sets.newHashSet(), titleWeighting, broadcastWeighting, availabilityWeighting, priorityChannelWeighting, firstBroadcastWeighting);
}
/**
* Use a Builder
*/
@Deprecated
public SearchQuery(String term, Selection selection, Iterable includedPublishers, float titleWeighting, float broadcastWeighting, float availabilityWeighting, Maybe priorityChannelWeighting, Maybe firstBroadcastWeighting) {
this(term, selection, Sets.newHashSet(), includedPublishers, titleWeighting, broadcastWeighting, availabilityWeighting, priorityChannelWeighting, firstBroadcastWeighting);
}
public SearchQuery(String term, Selection selection, Iterable includedSpecializations, Iterable includedPublishers, float titleWeighting, float broadcastWeighting, float availabilityWeighting, Maybe priorityChannelWeighting, Maybe firstBroadcastWeighting) {
=======
public SearchQuery(String term, Selection selection, Iterable includedPublishers, float titleWeighting, float broadcastWeighting, float availabilityWeighting) {
this(term, selection, Sets.newHashSet(), includedPublishers, titleWeighting, broadcastWeighting, availabilityWeighting, null, null);
}
public SearchQuery(String term, Selection selection,
Iterable includedSpecializations, Iterable includedPublishers,
float titleWeighting, float broadcastWeighting, float availabilityWeighting,
String type, Boolean topLevelOnly) {
>>>>>>> f6026654b140560036642d210da33e4dabc5f7ed
this.term = term;
this.selection = selection;
this.titleWeighting = titleWeighting; |