RGLDocumentReaderComparison

Objective-C

@interface RGLDocumentReaderComparison : NSObject

/**
The value's origin source
 */
@property(nonatomic, assign, readonly) RGLResultType sourceTypeLeft;

/**
The value's origin source
 */
@property(nonatomic, assign, readonly) RGLResultType sourceTypeRight;

/**
 The status of field comparisons
 */
@property(nonatomic, assign, readonly) RGLCheckResult status;

- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;
+ (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;;
- (NSDictionary *_Nonnull)jsonDictionary;

@end

Swift

class DocumentReaderComparison : NSObject

Undocumented

  • The value’s origin source

    Declaration

    Objective-C

    @property (nonatomic, readonly) RGLResultType sourceTypeLeft;

    Swift

    var sourceTypeLeft: ResultType { get }
  • The value’s origin source

    Declaration

    Objective-C

    @property (nonatomic, readonly) RGLResultType sourceTypeRight;

    Swift

    var sourceTypeRight: ResultType { get }
  • The status of field comparisons

    Declaration

    Objective-C

    @property (nonatomic, readonly) RGLCheckResult status;

    Swift

    var status: CheckResult { get }
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype _Nonnull)init NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;

    Swift

    init(json: [AnyHashable : Any], sourceList: [AnyHashable : Any])
  • Undocumented

    Declaration

    Objective-C

    + (instancetype _Nonnull)initWithJSON:(NSDictionary * _Nonnull)json sourceList:(NSDictionary *_Nonnull)sourceList;

    Swift

    class func initWithJSON(_ json: [AnyHashable : Any], sourceList: [AnyHashable : Any]) -> Self
  • Undocumented

    Declaration

    Objective-C

    - (NSDictionary *_Nonnull)jsonDictionary;

    Swift

    func jsonDictionary() -> [AnyHashable : Any]