Enum FuotaDeviceStatus
- java.lang.Object
-
- java.lang.Enum<FuotaDeviceStatus>
-
- software.amazon.awssdk.services.iotwireless.model.FuotaDeviceStatus
-
- All Implemented Interfaces:
Serializable,Comparable<FuotaDeviceStatus>
@Generated("software.amazon.awssdk:codegen") public enum FuotaDeviceStatus extends Enum<FuotaDeviceStatus>
The status of a wireless device in a FUOTA task.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FuotaDeviceStatusfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<FuotaDeviceStatus>knownValues()StringtoString()static FuotaDeviceStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static FuotaDeviceStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIAL
public static final FuotaDeviceStatus INITIAL
-
PACKAGE_NOT_SUPPORTED
public static final FuotaDeviceStatus PACKAGE_NOT_SUPPORTED
-
FRAG_ALGO_UNSUPPORTED
public static final FuotaDeviceStatus FRAG_ALGO_UNSUPPORTED
-
NOT_ENOUGH_MEMORY
public static final FuotaDeviceStatus NOT_ENOUGH_MEMORY
-
FRAG_INDEX_UNSUPPORTED
public static final FuotaDeviceStatus FRAG_INDEX_UNSUPPORTED
-
WRONG_DESCRIPTOR
public static final FuotaDeviceStatus WRONG_DESCRIPTOR
-
SESSION_CNT_REPLAY
public static final FuotaDeviceStatus SESSION_CNT_REPLAY
-
MISSING_FRAG
public static final FuotaDeviceStatus MISSING_FRAG
-
MEMORY_ERROR
public static final FuotaDeviceStatus MEMORY_ERROR
-
MIC_ERROR
public static final FuotaDeviceStatus MIC_ERROR
-
SUCCESSFUL
public static final FuotaDeviceStatus SUCCESSFUL
-
DEVICE_EXIST_IN_CONFLICT_FUOTA_TASK
public static final FuotaDeviceStatus DEVICE_EXIST_IN_CONFLICT_FUOTA_TASK
-
UNKNOWN_TO_SDK_VERSION
public static final FuotaDeviceStatus UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static FuotaDeviceStatus[] 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 (FuotaDeviceStatus c : FuotaDeviceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FuotaDeviceStatus 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<FuotaDeviceStatus>
-
fromValue
public static FuotaDeviceStatus 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:
- FuotaDeviceStatus corresponding to the value
-
knownValues
public static Set<FuotaDeviceStatus> 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 knownFuotaDeviceStatuss
-
-