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