Enum CweCommonConsequenceTechnicalImpactsType
- java.lang.Object
-
- java.lang.Enum<CweCommonConsequenceTechnicalImpactsType>
-
- com.synopsys.integration.blackduck.api.manual.temporary.enumeration.CweCommonConsequenceTechnicalImpactsType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CweCommonConsequenceTechnicalImpactsType>
public enum CweCommonConsequenceTechnicalImpactsType extends java.lang.Enum<CweCommonConsequenceTechnicalImpactsType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringprettyPrint()static CweCommonConsequenceTechnicalImpactsTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CweCommonConsequenceTechnicalImpactsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALTER_EXECUTION_LOGIC
public static final CweCommonConsequenceTechnicalImpactsType ALTER_EXECUTION_LOGIC
-
BYPASS_PROTECTION
public static final CweCommonConsequenceTechnicalImpactsType BYPASS_PROTECTION
-
DOS_AMPLIFICATION
public static final CweCommonConsequenceTechnicalImpactsType DOS_AMPLIFICATION
-
DOS_CRASH_EXIT_RESTART
public static final CweCommonConsequenceTechnicalImpactsType DOS_CRASH_EXIT_RESTART
-
DOS_INSTABILITY
public static final CweCommonConsequenceTechnicalImpactsType DOS_INSTABILITY
-
DOS_RESOURCE_CONSUMPTION_CPU
public static final CweCommonConsequenceTechnicalImpactsType DOS_RESOURCE_CONSUMPTION_CPU
-
DOS_RESOURCE_CONSUMPTION_MEM
public static final CweCommonConsequenceTechnicalImpactsType DOS_RESOURCE_CONSUMPTION_MEM
-
DOS_RESOURCE_CONSUMPTION_OTHER
public static final CweCommonConsequenceTechnicalImpactsType DOS_RESOURCE_CONSUMPTION_OTHER
-
EXECUTE_UNAUTHORIZED_CODE
public static final CweCommonConsequenceTechnicalImpactsType EXECUTE_UNAUTHORIZED_CODE
-
GAIN_PRIVILEGES
public static final CweCommonConsequenceTechnicalImpactsType GAIN_PRIVILEGES
-
HIDE_ACTIVITIES
public static final CweCommonConsequenceTechnicalImpactsType HIDE_ACTIVITIES
-
MODIFY_APPLICATION_DATA
public static final CweCommonConsequenceTechnicalImpactsType MODIFY_APPLICATION_DATA
-
MODIFY_FILES_OR_DIRECTORIES
public static final CweCommonConsequenceTechnicalImpactsType MODIFY_FILES_OR_DIRECTORIES
-
MODIFY_MEMORY
public static final CweCommonConsequenceTechnicalImpactsType MODIFY_MEMORY
-
OTHER
public static final CweCommonConsequenceTechnicalImpactsType OTHER
-
QUALITY_DEGREDATION
public static final CweCommonConsequenceTechnicalImpactsType QUALITY_DEGREDATION
-
READ_APPLICATION_DATA
public static final CweCommonConsequenceTechnicalImpactsType READ_APPLICATION_DATA
-
READ_FILES_OR_DIRECTORIES
public static final CweCommonConsequenceTechnicalImpactsType READ_FILES_OR_DIRECTORIES
-
READ_MEMORY
public static final CweCommonConsequenceTechnicalImpactsType READ_MEMORY
-
UNEXPECTED_STATE
public static final CweCommonConsequenceTechnicalImpactsType UNEXPECTED_STATE
-
VARIES_BY_CONTEXT
public static final CweCommonConsequenceTechnicalImpactsType VARIES_BY_CONTEXT
-
-
Method Detail
-
values
public static CweCommonConsequenceTechnicalImpactsType[] 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 (CweCommonConsequenceTechnicalImpactsType c : CweCommonConsequenceTechnicalImpactsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CweCommonConsequenceTechnicalImpactsType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
prettyPrint
public java.lang.String prettyPrint()
-
-