Package de.uka.ipd.sdq.dsexplore.launch
Enum DSEConstantsContainer.QualityAttribute
- java.lang.Object
-
- java.lang.Enum<DSEConstantsContainer.QualityAttribute>
-
- de.uka.ipd.sdq.dsexplore.launch.DSEConstantsContainer.QualityAttribute
-
- All Implemented Interfaces:
Serializable
,Comparable<DSEConstantsContainer.QualityAttribute>
- Enclosing class:
- DSEConstantsContainer
public static enum DSEConstantsContainer.QualityAttribute extends Enum<DSEConstantsContainer.QualityAttribute>
TODO: Move this toAnalysisQualityAttributes
?
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIDENTIALITY_QUALITY
COST_QUALITY
FEATURE_QUALITY
NEW_SECURITY_QUALITY
NQR_QUALITY
PERFORMANCE_QUALITY
REASONING_QUALITY
RELIABILITY_QUALITY
SECURITY_QUALITY
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract String
getName()
abstract String
getPrettyName()
static DSEConstantsContainer.QualityAttribute
getQualityAttribute(String name)
static DSEConstantsContainer.QualityAttribute
valueOf(String name)
Returns the enum constant of this type with the specified name.static DSEConstantsContainer.QualityAttribute[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FEATURE_QUALITY
public static final DSEConstantsContainer.QualityAttribute FEATURE_QUALITY
-
PERFORMANCE_QUALITY
public static final DSEConstantsContainer.QualityAttribute PERFORMANCE_QUALITY
-
COST_QUALITY
public static final DSEConstantsContainer.QualityAttribute COST_QUALITY
-
RELIABILITY_QUALITY
public static final DSEConstantsContainer.QualityAttribute RELIABILITY_QUALITY
-
SECURITY_QUALITY
public static final DSEConstantsContainer.QualityAttribute SECURITY_QUALITY
-
NEW_SECURITY_QUALITY
public static final DSEConstantsContainer.QualityAttribute NEW_SECURITY_QUALITY
-
NQR_QUALITY
public static final DSEConstantsContainer.QualityAttribute NQR_QUALITY
-
REASONING_QUALITY
public static final DSEConstantsContainer.QualityAttribute REASONING_QUALITY
-
CONFIDENTIALITY_QUALITY
public static final DSEConstantsContainer.QualityAttribute CONFIDENTIALITY_QUALITY
-
-
Method Detail
-
values
public static DSEConstantsContainer.QualityAttribute[] 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 (DSEConstantsContainer.QualityAttribute c : DSEConstantsContainer.QualityAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DSEConstantsContainer.QualityAttribute 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
-
getName
public abstract String getName()
-
getQualityAttribute
public static DSEConstantsContainer.QualityAttribute getQualityAttribute(String name)
-
getPrettyName
public abstract String getPrettyName()
-
-