Enum SupportedRfRegion
- java.lang.Object
-
- java.lang.Enum<SupportedRfRegion>
-
- software.amazon.awssdk.services.iotwireless.model.SupportedRfRegion
-
- All Implemented Interfaces:
Serializable,Comparable<SupportedRfRegion>
@Generated("software.amazon.awssdk:codegen") public enum SupportedRfRegion extends Enum<SupportedRfRegion>
Supported RfRegions
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SupportedRfRegionfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<SupportedRfRegion>knownValues()StringtoString()static SupportedRfRegionvalueOf(String name)Returns the enum constant of this type with the specified name.static SupportedRfRegion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EU868
public static final SupportedRfRegion EU868
-
US915
public static final SupportedRfRegion US915
-
AU915
public static final SupportedRfRegion AU915
-
AS923_1
public static final SupportedRfRegion AS923_1
-
AS923_2
public static final SupportedRfRegion AS923_2
-
AS923_3
public static final SupportedRfRegion AS923_3
-
AS923_4
public static final SupportedRfRegion AS923_4
-
EU433
public static final SupportedRfRegion EU433
-
CN470
public static final SupportedRfRegion CN470
-
CN779
public static final SupportedRfRegion CN779
-
RU864
public static final SupportedRfRegion RU864
-
KR920
public static final SupportedRfRegion KR920
-
IN865
public static final SupportedRfRegion IN865
-
UNKNOWN_TO_SDK_VERSION
public static final SupportedRfRegion UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SupportedRfRegion[] 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 (SupportedRfRegion c : SupportedRfRegion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupportedRfRegion 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<SupportedRfRegion>
-
fromValue
public static SupportedRfRegion 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:
- SupportedRfRegion corresponding to the value
-
knownValues
public static Set<SupportedRfRegion> 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 knownSupportedRfRegions
-
-