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