RVS_BTDriver_PropertyProtocol_Type_Enum
public enum RVS_BTDriver_PropertyProtocol_Type_Enum : Equatable
This enum is used to cast a property value into its proper data type.
-
The data, cast to a String (associated value)
Declaration
Swift
case stringValue(String!) -
The data, cast to an Integer (associated value)
Declaration
Swift
case intValue(Int!) -
The data, cast to a Boolean (associated value)
Declaration
Swift
case boolValue(Bool!) -
The data, cast to a double-precision float (associated value)
Declaration
Swift
case floatValue(Double!) -
The data is not able to be cast, and is returned as the raw Data type.
Declaration
Swift
case rawValue(Data!) -
This is returned if the data is nil, or an undefined type (no associated value).
Declaration
Swift
case undefinedValue
View on GitHub
RVS_BTDriver_PropertyProtocol_Type_Enum Enumeration Reference