Package com.funnelback.plugin.docs.model
Enum ProductSubtopic.SystemAdministration
- java.lang.Object
-
- java.lang.Enum<ProductSubtopic.SystemAdministration>
-
- com.funnelback.plugin.docs.model.ProductSubtopic.SystemAdministration
-
- All Implemented Interfaces:
ProductSubtopicCategory
,Serializable
,Comparable<ProductSubtopic.SystemAdministration>
- Enclosing class:
- ProductSubtopic
public static enum ProductSubtopic.SystemAdministration extends Enum<ProductSubtopic.SystemAdministration> implements ProductSubtopicCategory
"System administration" product topic
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKUP
GLOBAL_CONFIGURATION
INSTALLATION
LOGGING
MONITORING
MULTI_SERVER_CONFIGURATION
PATCHING
SECURITY
SYSTEM_SERVICES
UPGRADES
-
Constructor Summary
Constructors Modifier Constructor Description private
SystemAdministration()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProductSubtopic.SystemAdministration
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductSubtopic.SystemAdministration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface com.funnelback.plugin.docs.model.ProductSubtopicCategory
getTopic
-
-
-
-
Enum Constant Detail
-
BACKUP
public static final ProductSubtopic.SystemAdministration BACKUP
-
GLOBAL_CONFIGURATION
public static final ProductSubtopic.SystemAdministration GLOBAL_CONFIGURATION
-
INSTALLATION
public static final ProductSubtopic.SystemAdministration INSTALLATION
-
LOGGING
public static final ProductSubtopic.SystemAdministration LOGGING
-
MONITORING
public static final ProductSubtopic.SystemAdministration MONITORING
-
MULTI_SERVER_CONFIGURATION
public static final ProductSubtopic.SystemAdministration MULTI_SERVER_CONFIGURATION
-
PATCHING
public static final ProductSubtopic.SystemAdministration PATCHING
-
SECURITY
public static final ProductSubtopic.SystemAdministration SECURITY
-
SYSTEM_SERVICES
public static final ProductSubtopic.SystemAdministration SYSTEM_SERVICES
-
UPGRADES
public static final ProductSubtopic.SystemAdministration UPGRADES
-
-
Field Detail
-
topic
private final String topic
-
-
Method Detail
-
values
public static ProductSubtopic.SystemAdministration[] 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.SystemAdministration c : ProductSubtopic.SystemAdministration.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.SystemAdministration 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
-
-