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