Enum TargetDevice
- java.lang.Object
-
- java.lang.Enum<TargetDevice>
-
- software.amazon.awssdk.services.sagemaker.model.TargetDevice
-
- All Implemented Interfaces:
Serializable,Comparable<TargetDevice>
@Generated("software.amazon.awssdk:codegen") public enum TargetDevice extends Enum<TargetDevice>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AISAGEAMBA_CV2AMBA_CV22AMBA_CV25COREMLDEEPLENSIMX8_MPLUSIMX8_QMJACINTO_TDA4_VMJETSON_NANOJETSON_TX1JETSON_TX2JETSON_XAVIERLAMBDAML_C4ML_C5ML_C6_GML_EIA2ML_G4_DNML_INF1ML_INF2ML_M4ML_M5ML_M6_GML_P2ML_P3ML_TRN1QCS603QCS605RASP3_BRASP4_BRK3288RK3399SBE_CSITARA_AM57_XUNKNOWN_TO_SDK_VERSIONX86_WIN32X86_WIN64
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TargetDevicefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TargetDevice>knownValues()StringtoString()static TargetDevicevalueOf(String name)Returns the enum constant of this type with the specified name.static TargetDevice[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAMBDA
public static final TargetDevice LAMBDA
-
ML_M4
public static final TargetDevice ML_M4
-
ML_M5
public static final TargetDevice ML_M5
-
ML_M6_G
public static final TargetDevice ML_M6_G
-
ML_C4
public static final TargetDevice ML_C4
-
ML_C5
public static final TargetDevice ML_C5
-
ML_C6_G
public static final TargetDevice ML_C6_G
-
ML_P2
public static final TargetDevice ML_P2
-
ML_P3
public static final TargetDevice ML_P3
-
ML_G4_DN
public static final TargetDevice ML_G4_DN
-
ML_INF1
public static final TargetDevice ML_INF1
-
ML_INF2
public static final TargetDevice ML_INF2
-
ML_TRN1
public static final TargetDevice ML_TRN1
-
ML_EIA2
public static final TargetDevice ML_EIA2
-
JETSON_TX1
public static final TargetDevice JETSON_TX1
-
JETSON_TX2
public static final TargetDevice JETSON_TX2
-
JETSON_NANO
public static final TargetDevice JETSON_NANO
-
JETSON_XAVIER
public static final TargetDevice JETSON_XAVIER
-
RASP3_B
public static final TargetDevice RASP3_B
-
RASP4_B
public static final TargetDevice RASP4_B
-
IMX8_QM
public static final TargetDevice IMX8_QM
-
DEEPLENS
public static final TargetDevice DEEPLENS
-
RK3399
public static final TargetDevice RK3399
-
RK3288
public static final TargetDevice RK3288
-
AISAGE
public static final TargetDevice AISAGE
-
SBE_C
public static final TargetDevice SBE_C
-
QCS605
public static final TargetDevice QCS605
-
QCS603
public static final TargetDevice QCS603
-
SITARA_AM57_X
public static final TargetDevice SITARA_AM57_X
-
AMBA_CV2
public static final TargetDevice AMBA_CV2
-
AMBA_CV22
public static final TargetDevice AMBA_CV22
-
AMBA_CV25
public static final TargetDevice AMBA_CV25
-
X86_WIN32
public static final TargetDevice X86_WIN32
-
X86_WIN64
public static final TargetDevice X86_WIN64
-
COREML
public static final TargetDevice COREML
-
JACINTO_TDA4_VM
public static final TargetDevice JACINTO_TDA4_VM
-
IMX8_MPLUS
public static final TargetDevice IMX8_MPLUS
-
UNKNOWN_TO_SDK_VERSION
public static final TargetDevice UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TargetDevice[] 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 (TargetDevice c : TargetDevice.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TargetDevice 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<TargetDevice>
-
fromValue
public static TargetDevice 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:
- TargetDevice corresponding to the value
-
knownValues
public static Set<TargetDevice> 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 knownTargetDevices
-
-