RGLRFIDNotify

Objective-C

@interface RGLRFIDNotify: NSObject

/// The notification code.
@property(nonatomic, assign, readonly) RGLRFIDNotificationCodes code;

/// The value in the context of the notification code.
/// @see specific codes from the `RGLRFIDNotificationCode`.
@property(nonatomic, assign, readonly) double value;

/// The attachment part of a composite notification code. Contains a value related to different enum types.
/// @see specific codes from the `RGLRFIDNotificationCode`.
@property(nonatomic, assign, readonly) uint32_t attachment;

- (instancetype)initWithCode:(uint32_t)code value:(double)value;

+ (NSString *)rfidDataFileTypeName:(RGLRFIDDataFileType)type;
+ (NSString *)rfidErrorCodesName:(RGLRFIDErrorCodes)errorCode;

@end

Swift

class RFIDNotify : NSObject

Undocumented

  • The notification code.

    Declaration

    Objective-C

    @property (nonatomic, readonly) RGLRFIDNotificationCodes code;

    Swift

    var code: RFIDNotificationCodes { get }
  • The value in the context of the notification code.

    See

    specific codes from the RGLRFIDNotificationCode.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double value;

    Swift

    var value: Double { get }
  • The attachment part of a composite notification code. Contains a value related to different enum types.

    See

    specific codes from the RGLRFIDNotificationCode.

    Declaration

    Objective-C

    @property (nonatomic, readonly) uint32_t attachment;

    Swift

    var attachment: UInt32 { get }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithCode:(uint32_t)code value:(double)value;

    Swift

    init!(code: UInt32, value: Double)
  • Undocumented

    Declaration

    Objective-C

    + (NSString *)rfidDataFileTypeName:(RGLRFIDDataFileType)type;

    Swift

    class func rfidDataFileTypeName(_ type: RFIDDataFileType) -> String!
  • Undocumented

    Declaration

    Objective-C

    + (NSString *)rfidErrorCodesName:(RGLRFIDErrorCodes)errorCode;

    Swift

    class func rfidErrorCodesName(_ errorCode: RFIDErrorCodes) -> String!