Class DeterministicResolver
- java.lang.Object
-
- com.yahoo.component.AbstractComponent
-
- com.yahoo.search.pagetemplates.engine.Resolver
-
- com.yahoo.search.pagetemplates.engine.resolvers.DeterministicResolver
-
- All Implemented Interfaces:
com.yahoo.component.Component
,com.yahoo.component.Deconstructable
,java.lang.Comparable<com.yahoo.component.Component>
public class DeterministicResolver extends Resolver
A resolver which- Always chooses the last alternative of any Choice
- Always maps values to placeholders in the order they are listed in the map definition of any MapChoice
The id of this if
native.deterministic
- Author:
- bratseth
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
nativeId
-
Constructor Summary
Constructors Modifier Constructor Description DeterministicResolver()
protected
DeterministicResolver(java.lang.String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
resolve(Choice choice, Query query, Result result, Resolution resolution)
Chooses the last alternative of any choicevoid
resolve(MapChoice choice, Query query, Result result, Resolution resolution)
Chooses a mapping which is always by the literal order given in the source template
-
-
-
Field Detail
-
nativeId
public static final java.lang.String nativeId
- See Also:
- Constant Field Values
-
-
Method Detail
-
resolve
public void resolve(Choice choice, Query query, Result result, Resolution resolution)
Chooses the last alternative of any choice- Overrides:
resolve
in classResolver
- Parameters:
choice
- the choice to resolvequery
- the query for which this should be resolved, typically used to extract featuresresult
- the result for which this should be resolved, typically used to extract featuresresolution
- the set of resolutions made so far, to which this should be added:resolution.addChoiceResolution(choice,chosenAlternativeIndex)
-
resolve
public void resolve(MapChoice choice, Query query, Result result, Resolution resolution)
Chooses a mapping which is always by the literal order given in the source template- Overrides:
resolve
in classResolver
- Parameters:
choice
- the choice to resolvequery
- the query for which this should be resolved, typically used to extract featuresresult
- the result for which this should be resolved, typically used to extract featuresresolution
- the set of resolutions made so far, to which this should be added:resolution.addMapChoiceResolution(choice,chosenMapping)
-
-