Package com.funnelback.plugin.docs.model
Enum ProductSubtopic.ResultsPage
- java.lang.Object
-
- java.lang.Enum<ProductSubtopic.ResultsPage>
-
- com.funnelback.plugin.docs.model.ProductSubtopic.ResultsPage
-
- All Implemented Interfaces:
ProductSubtopicCategory
,Serializable
,Comparable<ProductSubtopic.ResultsPage>
- Enclosing class:
- ProductSubtopic
public static enum ProductSubtopic.ResultsPage extends Enum<ProductSubtopic.ResultsPage> implements ProductSubtopicCategory
"Search results pages" product topic
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description private
ResultsPage(String topic)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTopic()
static ProductSubtopic.ResultsPage
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductSubtopic.ResultsPage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO_COMPLETION
public static final ProductSubtopic.ResultsPage AUTO_COMPLETION
-
BEST_BETS
public static final ProductSubtopic.ResultsPage BEST_BETS
-
CACHED_RESULTS
public static final ProductSubtopic.ResultsPage CACHED_RESULTS
-
CONTEXTUAL_NAVIGATION
public static final ProductSubtopic.ResultsPage CONTEXTUAL_NAVIGATION
-
CURATOR
public static final ProductSubtopic.ResultsPage CURATOR
-
DATA_MODEL_MANIPULATION
public static final ProductSubtopic.ResultsPage DATA_MODEL_MANIPULATION
-
DATA_MODEL_SEARCH
public static final ProductSubtopic.ResultsPage DATA_MODEL_SEARCH
-
DLS
public static final ProductSubtopic.ResultsPage DLS
-
EVENT_SEARCH
public static final ProductSubtopic.ResultsPage EVENT_SEARCH
-
EXTRA_SEARCHES
public static final ProductSubtopic.ResultsPage EXTRA_SEARCHES
-
FACETED_NAVIGATION
public static final ProductSubtopic.ResultsPage FACETED_NAVIGATION
-
GEOSPATIAL_SEARCH
public static final ProductSubtopic.ResultsPage GEOSPATIAL_SEARCH
-
LOCALIZATION
public static final ProductSubtopic.ResultsPage LOCALIZATION
-
PERSONALIZATION
public static final ProductSubtopic.ResultsPage PERSONALIZATION
-
QUERY_LANGUAGE
public static final ProductSubtopic.ResultsPage QUERY_LANGUAGE
-
RESULTS_TEMPLATES
public static final ProductSubtopic.ResultsPage RESULTS_TEMPLATES
-
SESSIONS_HISTORY
public static final ProductSubtopic.ResultsPage SESSIONS_HISTORY
-
-
Field Detail
-
topic
private final String topic
-
-
Constructor Detail
-
ResultsPage
private ResultsPage(String topic)
-
-
Method Detail
-
values
public static ProductSubtopic.ResultsPage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProductSubtopic.ResultsPage c : ProductSubtopic.ResultsPage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductSubtopic.ResultsPage valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getTopic
public String getTopic()
- Specified by:
getTopic
in interfaceProductSubtopicCategory
-
-