Package com.funnelback.plugin.docs.model
Enum ProductSubtopic.Indexing
- java.lang.Object
-
- java.lang.Enum<ProductSubtopic.Indexing>
-
- com.funnelback.plugin.docs.model.ProductSubtopic.Indexing
-
- All Implemented Interfaces:
ProductSubtopicCategory
,Serializable
,Comparable<ProductSubtopic.Indexing>
- Enclosing class:
- ProductSubtopic
public static enum ProductSubtopic.Indexing extends Enum<ProductSubtopic.Indexing> implements ProductSubtopicCategory
"Search indexing" product topic
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENT_FILTERS
INDEX_MANIPULATION
KNOWLEDGE_GRAPH
METADATA
PUSH_INDEXES
SPELLING_SUGGESTIONS
WORKFLOW_SCRIPTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTopic()
static ProductSubtopic.Indexing
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductSubtopic.Indexing[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_FILTERS
public static final ProductSubtopic.Indexing DOCUMENT_FILTERS
-
INDEX_MANIPULATION
public static final ProductSubtopic.Indexing INDEX_MANIPULATION
-
KNOWLEDGE_GRAPH
public static final ProductSubtopic.Indexing KNOWLEDGE_GRAPH
-
METADATA
public static final ProductSubtopic.Indexing METADATA
-
PUSH_INDEXES
public static final ProductSubtopic.Indexing PUSH_INDEXES
-
SPELLING_SUGGESTIONS
public static final ProductSubtopic.Indexing SPELLING_SUGGESTIONS
-
WORKFLOW_SCRIPTS
public static final ProductSubtopic.Indexing WORKFLOW_SCRIPTS
-
-
Field Detail
-
topic
private final String topic
-
-
Constructor Detail
-
Indexing
private Indexing(String topic)
-
-
Method Detail
-
values
public static ProductSubtopic.Indexing[] 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.Indexing c : ProductSubtopic.Indexing.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.Indexing 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
-
-