Package com.funnelback.plugin.docs.model
Enum ProductSubtopic.RankingSorting
- java.lang.Object
-
- java.lang.Enum<ProductSubtopic.RankingSorting>
-
- com.funnelback.plugin.docs.model.ProductSubtopic.RankingSorting
-
- All Implemented Interfaces:
ProductSubtopicCategory
,Serializable
,Comparable<ProductSubtopic.RankingSorting>
- Enclosing class:
- ProductSubtopic
public static enum ProductSubtopic.RankingSorting extends Enum<ProductSubtopic.RankingSorting> implements ProductSubtopicCategory
"Search ranking and sorting" product topic
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PADRE
QIE
QUERY_BLENDING
QUERY_OPTIMIZATION
RANKING_SORTING
RESULT_COLLAPSING
RESULT_DIVERSIFICATION
SEO_TUNING
STEMMING
SYNONYMS
-
Constructor Summary
Constructors Modifier Constructor Description private
RankingSorting()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTopic()
static ProductSubtopic.RankingSorting
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductSubtopic.RankingSorting[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PADRE
public static final ProductSubtopic.RankingSorting PADRE
-
QIE
public static final ProductSubtopic.RankingSorting QIE
-
QUERY_BLENDING
public static final ProductSubtopic.RankingSorting QUERY_BLENDING
-
QUERY_OPTIMIZATION
public static final ProductSubtopic.RankingSorting QUERY_OPTIMIZATION
-
RANKING_SORTING
public static final ProductSubtopic.RankingSorting RANKING_SORTING
-
RESULT_COLLAPSING
public static final ProductSubtopic.RankingSorting RESULT_COLLAPSING
-
RESULT_DIVERSIFICATION
public static final ProductSubtopic.RankingSorting RESULT_DIVERSIFICATION
-
SEO_TUNING
public static final ProductSubtopic.RankingSorting SEO_TUNING
-
STEMMING
public static final ProductSubtopic.RankingSorting STEMMING
-
SYNONYMS
public static final ProductSubtopic.RankingSorting SYNONYMS
-
-
Field Detail
-
topic
private final String topic
-
-
Method Detail
-
values
public static ProductSubtopic.RankingSorting[] 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.RankingSorting c : ProductSubtopic.RankingSorting.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.RankingSorting 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
-
-