Enum ClientCompatibilityV2
- java.lang.Object
-
- java.lang.Enum<ClientCompatibilityV2>
-
- software.amazon.awssdk.services.pcaconnectorad.model.ClientCompatibilityV2
-
- All Implemented Interfaces:
Serializable,Comparable<ClientCompatibilityV2>
@Generated("software.amazon.awssdk:codegen") public enum ClientCompatibilityV2 extends Enum<ClientCompatibilityV2>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNKNOWN_TO_SDK_VERSIONWINDOWS_SERVER_2003WINDOWS_SERVER_2008WINDOWS_SERVER_2008_R2WINDOWS_SERVER_2012WINDOWS_SERVER_2012_R2WINDOWS_SERVER_2016
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientCompatibilityV2fromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ClientCompatibilityV2>knownValues()StringtoString()static ClientCompatibilityV2valueOf(String name)Returns the enum constant of this type with the specified name.static ClientCompatibilityV2[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS_SERVER_2003
public static final ClientCompatibilityV2 WINDOWS_SERVER_2003
-
WINDOWS_SERVER_2008
public static final ClientCompatibilityV2 WINDOWS_SERVER_2008
-
WINDOWS_SERVER_2008_R2
public static final ClientCompatibilityV2 WINDOWS_SERVER_2008_R2
-
WINDOWS_SERVER_2012
public static final ClientCompatibilityV2 WINDOWS_SERVER_2012
-
WINDOWS_SERVER_2012_R2
public static final ClientCompatibilityV2 WINDOWS_SERVER_2012_R2
-
WINDOWS_SERVER_2016
public static final ClientCompatibilityV2 WINDOWS_SERVER_2016
-
UNKNOWN_TO_SDK_VERSION
public static final ClientCompatibilityV2 UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ClientCompatibilityV2[] 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 (ClientCompatibilityV2 c : ClientCompatibilityV2.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientCompatibilityV2 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<ClientCompatibilityV2>
-
fromValue
public static ClientCompatibilityV2 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:
- ClientCompatibilityV2 corresponding to the value
-
knownValues
public static Set<ClientCompatibilityV2> 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 knownClientCompatibilityV2s
-
-