Package com.funnelback.plugin.docs.model
Enum ProductTopic
- java.lang.Object
-
- java.lang.Enum<ProductTopic>
-
- com.funnelback.plugin.docs.model.ProductTopic
-
- All Implemented Interfaces:
Serializable
,Comparable<ProductTopic>
public enum ProductTopic extends Enum<ProductTopic>
Source documentation meta tag "product-topic"
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYTICS_REPORTING
APPLICATION_ADMINISTRATION
DATA_SOURCES
INDEXING
INTEGRATION_DEVELOPMENT
RANKING_SORTING
RESULTS_PAGE
SEARCH_PACKAGES
SYSTEM_ADMINISTRATION
-
Constructor Summary
Constructors Modifier Constructor Description private
ProductTopic(String topic)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getTopic()
static ProductTopic
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductTopic[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_SOURCES
public static final ProductTopic DATA_SOURCES
-
RESULTS_PAGE
public static final ProductTopic RESULTS_PAGE
-
SEARCH_PACKAGES
public static final ProductTopic SEARCH_PACKAGES
-
ANALYTICS_REPORTING
public static final ProductTopic ANALYTICS_REPORTING
-
APPLICATION_ADMINISTRATION
public static final ProductTopic APPLICATION_ADMINISTRATION
-
INDEXING
public static final ProductTopic INDEXING
-
INTEGRATION_DEVELOPMENT
public static final ProductTopic INTEGRATION_DEVELOPMENT
-
RANKING_SORTING
public static final ProductTopic RANKING_SORTING
-
SYSTEM_ADMINISTRATION
public static final ProductTopic SYSTEM_ADMINISTRATION
-
-
Field Detail
-
topic
private final String topic
-
-
Constructor Detail
-
ProductTopic
private ProductTopic(String topic)
-
-
Method Detail
-
values
public static ProductTopic[] 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 (ProductTopic c : ProductTopic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductTopic 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()
-
-