Package com.yahoo.search.grouping
Class Continuation
- java.lang.Object
-
- com.yahoo.search.grouping.Continuation
-
public abstract class Continuation extends Object
This class represents a piece of data stored by the grouping framework within a grouping result, which can subsequently be sent back along with the original request to navigate across a large result set. It is an opaque data object that is not intended to be human readable.
To render a continuation within a result set, you simply need to call
Object.toString()
.- Author:
- Simon Thoresen Hult
-
-
Constructor Summary
Constructors Constructor Description Continuation()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Continuation
copy()
Returns a deep copy of thisstatic Continuation
fromString(String string)
-
-
-
Field Detail
-
NEXT_PAGE
public static final String NEXT_PAGE
- See Also:
- Constant Field Values
-
PREV_PAGE
public static final String PREV_PAGE
- See Also:
- Constant Field Values
-
THIS_PAGE
public static final String THIS_PAGE
- See Also:
- Constant Field Values
-
-
Method Detail
-
fromString
public static Continuation fromString(String string)
-
copy
public abstract Continuation copy()
Returns a deep copy of this
-
-