@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum RecommendationCategory extends Enum<RecommendationCategory>
Enum Constant and Description |
---|
AWSBestPractices |
AWSCloudFormationIssues |
CodeMaintenanceIssues |
ConcurrencyIssues |
DuplicateCode |
InputValidations |
JavaBestPractices |
PythonBestPractices |
ResourceLeaks |
SecurityIssues |
Modifier and Type | Method and Description |
---|---|
static RecommendationCategory |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static RecommendationCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecommendationCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecommendationCategory AWSBestPractices
public static final RecommendationCategory AWSCloudFormationIssues
public static final RecommendationCategory DuplicateCode
public static final RecommendationCategory CodeMaintenanceIssues
public static final RecommendationCategory ConcurrencyIssues
public static final RecommendationCategory InputValidations
public static final RecommendationCategory PythonBestPractices
public static final RecommendationCategory JavaBestPractices
public static final RecommendationCategory ResourceLeaks
public static final RecommendationCategory SecurityIssues
public static RecommendationCategory[] values()
for (RecommendationCategory c : RecommendationCategory.values()) System.out.println(c);
public static RecommendationCategory valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<RecommendationCategory>
public static RecommendationCategory fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.