com.ca.commons.datamodel.cfg
Enum SoftwareModule
java.lang.Object
java.lang.Enum<SoftwareModule>
com.ca.commons.datamodel.cfg.SoftwareModule
- All Implemented Interfaces:
- Serializable, Comparable<SoftwareModule>
public enum SoftwareModule
- extends Enum<SoftwareModule>
Represents the software modules in the IM architecture, where CORE signifies universal application.
|
Method Summary |
static SoftwareModule |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SoftwareModule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
CORE
public static final SoftwareModule CORE
JCS
public static final SoftwareModule JCS
JIAM
public static final SoftwareModule JIAM
IMPS
public static final SoftwareModule IMPS
GUI_CLIENT
public static final SoftwareModule GUI_CLIENT
CONXP
public static final SoftwareModule CONXP
values
public static SoftwareModule[] 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 (SoftwareModule c : SoftwareModule.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SoftwareModule 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 name
NullPointerException - if the argument is null
Created 2011-07-14 13:27 EST