Enum PatchFilterKey
- java.lang.Object
-
- java.lang.Enum<PatchFilterKey>
-
- software.amazon.awssdk.services.ssm.model.PatchFilterKey
-
- All Implemented Interfaces:
Serializable,Comparable<PatchFilterKey>
@Generated("software.amazon.awssdk:codegen") public enum PatchFilterKey extends Enum<PatchFilterKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADVISORY_IDARCHBUGZILLA_IDCLASSIFICATIONCVE_IDEPOCHMSRC_SEVERITYNAMEPATCH_IDPATCH_SETPRIORITYPRODUCTPRODUCT_FAMILYRELEASEREPOSITORYSECTIONSECURITYSEVERITYUNKNOWN_TO_SDK_VERSIONVERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PatchFilterKeyfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<PatchFilterKey>knownValues()StringtoString()static PatchFilterKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static PatchFilterKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCH
public static final PatchFilterKey ARCH
-
ADVISORY_ID
public static final PatchFilterKey ADVISORY_ID
-
BUGZILLA_ID
public static final PatchFilterKey BUGZILLA_ID
-
PATCH_SET
public static final PatchFilterKey PATCH_SET
-
PRODUCT
public static final PatchFilterKey PRODUCT
-
PRODUCT_FAMILY
public static final PatchFilterKey PRODUCT_FAMILY
-
CLASSIFICATION
public static final PatchFilterKey CLASSIFICATION
-
CVE_ID
public static final PatchFilterKey CVE_ID
-
EPOCH
public static final PatchFilterKey EPOCH
-
MSRC_SEVERITY
public static final PatchFilterKey MSRC_SEVERITY
-
NAME
public static final PatchFilterKey NAME
-
PATCH_ID
public static final PatchFilterKey PATCH_ID
-
SECTION
public static final PatchFilterKey SECTION
-
PRIORITY
public static final PatchFilterKey PRIORITY
-
REPOSITORY
public static final PatchFilterKey REPOSITORY
-
RELEASE
public static final PatchFilterKey RELEASE
-
SEVERITY
public static final PatchFilterKey SEVERITY
-
SECURITY
public static final PatchFilterKey SECURITY
-
VERSION
public static final PatchFilterKey VERSION
-
UNKNOWN_TO_SDK_VERSION
public static final PatchFilterKey UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static PatchFilterKey[] 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 (PatchFilterKey c : PatchFilterKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PatchFilterKey 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<PatchFilterKey>
-
fromValue
public static PatchFilterKey fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- PatchFilterKey corresponding to the value
-
knownValues
public static Set<PatchFilterKey> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownPatchFilterKeys
-
-