Enum DeviceStatusDetailCode
- java.lang.Object
-
- java.lang.Enum<DeviceStatusDetailCode>
-
- software.amazon.awssdk.services.alexaforbusiness.model.DeviceStatusDetailCode
-
- All Implemented Interfaces:
Serializable,Comparable<DeviceStatusDetailCode>
@Generated("software.amazon.awssdk:codegen") public enum DeviceStatusDetailCode extends Enum<DeviceStatusDetailCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceStatusDetailCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<DeviceStatusDetailCode>knownValues()StringtoString()static DeviceStatusDetailCodevalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceStatusDetailCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEVICE_SOFTWARE_UPDATE_NEEDED
public static final DeviceStatusDetailCode DEVICE_SOFTWARE_UPDATE_NEEDED
-
DEVICE_WAS_OFFLINE
public static final DeviceStatusDetailCode DEVICE_WAS_OFFLINE
-
CREDENTIALS_ACCESS_FAILURE
public static final DeviceStatusDetailCode CREDENTIALS_ACCESS_FAILURE
-
TLS_VERSION_MISMATCH
public static final DeviceStatusDetailCode TLS_VERSION_MISMATCH
-
ASSOCIATION_REJECTION
public static final DeviceStatusDetailCode ASSOCIATION_REJECTION
-
AUTHENTICATION_FAILURE
public static final DeviceStatusDetailCode AUTHENTICATION_FAILURE
-
DHCP_FAILURE
public static final DeviceStatusDetailCode DHCP_FAILURE
-
INTERNET_UNAVAILABLE
public static final DeviceStatusDetailCode INTERNET_UNAVAILABLE
-
DNS_FAILURE
public static final DeviceStatusDetailCode DNS_FAILURE
-
UNKNOWN_FAILURE
public static final DeviceStatusDetailCode UNKNOWN_FAILURE
-
CERTIFICATE_ISSUING_LIMIT_EXCEEDED
public static final DeviceStatusDetailCode CERTIFICATE_ISSUING_LIMIT_EXCEEDED
-
INVALID_CERTIFICATE_AUTHORITY
public static final DeviceStatusDetailCode INVALID_CERTIFICATE_AUTHORITY
-
NETWORK_PROFILE_NOT_FOUND
public static final DeviceStatusDetailCode NETWORK_PROFILE_NOT_FOUND
-
INVALID_PASSWORD_STATE
public static final DeviceStatusDetailCode INVALID_PASSWORD_STATE
-
PASSWORD_NOT_FOUND
public static final DeviceStatusDetailCode PASSWORD_NOT_FOUND
-
PASSWORD_MANAGER_ACCESS_DENIED
public static final DeviceStatusDetailCode PASSWORD_MANAGER_ACCESS_DENIED
-
CERTIFICATE_AUTHORITY_ACCESS_DENIED
public static final DeviceStatusDetailCode CERTIFICATE_AUTHORITY_ACCESS_DENIED
-
UNKNOWN_TO_SDK_VERSION
public static final DeviceStatusDetailCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DeviceStatusDetailCode[] 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 (DeviceStatusDetailCode c : DeviceStatusDetailCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceStatusDetailCode 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<DeviceStatusDetailCode>
-
fromValue
public static DeviceStatusDetailCode 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:
- DeviceStatusDetailCode corresponding to the value
-
knownValues
public static Set<DeviceStatusDetailCode> 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 knownDeviceStatusDetailCodes
-
-