Enum NodeDataType
- java.lang.Object
-
- java.lang.Enum<NodeDataType>
-
- software.amazon.awssdk.services.iotfleetwise.model.NodeDataType
-
- All Implemented Interfaces:
Serializable,Comparable<NodeDataType>
@Generated("software.amazon.awssdk:codegen") public enum NodeDataType extends Enum<NodeDataType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NodeDataTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<NodeDataType>knownValues()StringtoString()static NodeDataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static NodeDataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT8
public static final NodeDataType INT8
-
UINT8
public static final NodeDataType UINT8
-
INT16
public static final NodeDataType INT16
-
UINT16
public static final NodeDataType UINT16
-
INT32
public static final NodeDataType INT32
-
UINT32
public static final NodeDataType UINT32
-
INT64
public static final NodeDataType INT64
-
UINT64
public static final NodeDataType UINT64
-
BOOLEAN
public static final NodeDataType BOOLEAN
-
FLOAT
public static final NodeDataType FLOAT
-
DOUBLE
public static final NodeDataType DOUBLE
-
STRING
public static final NodeDataType STRING
-
UNIX_TIMESTAMP
public static final NodeDataType UNIX_TIMESTAMP
-
INT8_ARRAY
public static final NodeDataType INT8_ARRAY
-
UINT8_ARRAY
public static final NodeDataType UINT8_ARRAY
-
INT16_ARRAY
public static final NodeDataType INT16_ARRAY
-
UINT16_ARRAY
public static final NodeDataType UINT16_ARRAY
-
INT32_ARRAY
public static final NodeDataType INT32_ARRAY
-
UINT32_ARRAY
public static final NodeDataType UINT32_ARRAY
-
INT64_ARRAY
public static final NodeDataType INT64_ARRAY
-
UINT64_ARRAY
public static final NodeDataType UINT64_ARRAY
-
BOOLEAN_ARRAY
public static final NodeDataType BOOLEAN_ARRAY
-
FLOAT_ARRAY
public static final NodeDataType FLOAT_ARRAY
-
DOUBLE_ARRAY
public static final NodeDataType DOUBLE_ARRAY
-
STRING_ARRAY
public static final NodeDataType STRING_ARRAY
-
UNIX_TIMESTAMP_ARRAY
public static final NodeDataType UNIX_TIMESTAMP_ARRAY
-
UNKNOWN
public static final NodeDataType UNKNOWN
-
STRUCT
public static final NodeDataType STRUCT
-
STRUCT_ARRAY
public static final NodeDataType STRUCT_ARRAY
-
UNKNOWN_TO_SDK_VERSION
public static final NodeDataType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static NodeDataType[] 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 (NodeDataType c : NodeDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeDataType 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<NodeDataType>
-
fromValue
public static NodeDataType 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:
- NodeDataType corresponding to the value
-
knownValues
public static Set<NodeDataType> 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 knownNodeDataTypes
-
-