Package org.cyclos.model.system
Enum SystemSubmodule
- java.lang.Object
-
- java.lang.Enum<SystemSubmodule>
-
- org.cyclos.model.system.SystemSubmodule
-
- All Implemented Interfaces:
Serializable,Comparable<SystemSubmodule>,PrefixedEnum,Submodule
public enum SystemSubmodule extends Enum<SystemSubmodule> implements Submodule
Submodules for theModule.SYSTEMmodule
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Modulemodule()Returns the module for this submodulestatic SystemSubmodulevalueOf(String name)Returns the enum constant of this type with the specified name.static SystemSubmodule[]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 org.cyclos.utils.PrefixedEnum
name
-
-
-
-
Enum Constant Detail
-
CONFIGURATIONS
public static final SystemSubmodule CONFIGURATIONS
-
CHANNEL_CONFIGURATIONS
public static final SystemSubmodule CHANNEL_CONFIGURATIONS
-
EXPORT_FORMATS
public static final SystemSubmodule EXPORT_FORMATS
-
EXTENSION_POINTS
public static final SystemSubmodule EXTENSION_POINTS
-
FIELDS
public static final SystemSubmodule FIELDS
-
IMAGES
public static final SystemSubmodule IMAGES
-
LANGUAGES
public static final SystemSubmodule LANGUAGES
-
LICENSING
public static final SystemSubmodule LICENSING
-
NETWORKS
public static final SystemSubmodule NETWORKS
-
OPERATIONS
public static final SystemSubmodule OPERATIONS
-
OPERATION_FIELDS
public static final SystemSubmodule OPERATION_FIELDS
-
REPORTS
public static final SystemSubmodule REPORTS
-
SCHEDULED_TASKS
public static final SystemSubmodule SCHEDULED_TASKS
-
SCRIPTS
public static final SystemSubmodule SCRIPTS
-
SETUP
public static final SystemSubmodule SETUP
-
SMS_OPERATION_CONFIGURATIONS
public static final SystemSubmodule SMS_OPERATION_CONFIGURATIONS
-
IMPORTS
public static final SystemSubmodule IMPORTS
-
INTERCEPTORS
public static final SystemSubmodule INTERCEPTORS
-
ENTITY_LOGS
public static final SystemSubmodule ENTITY_LOGS
-
WEB_SERVICES
public static final SystemSubmodule WEB_SERVICES
-
WIZARDS
public static final SystemSubmodule WIZARDS
-
WIZARD_STEPS
public static final SystemSubmodule WIZARD_STEPS
-
WIZARD_FIELDS
public static final SystemSubmodule WIZARD_FIELDS
-
MONITOR
public static final SystemSubmodule MONITOR
-
BACKGROUND_TASKS
public static final SystemSubmodule BACKGROUND_TASKS
-
POLLING_TASKS
public static final SystemSubmodule POLLING_TASKS
-
-
Method Detail
-
values
public static SystemSubmodule[] 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 (SystemSubmodule c : SystemSubmodule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemSubmodule 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
-
-