MSFPackageMetaInfo

Objective-C


@interface MSFPackageMetaInfo : NSObject {
  void *swigCPtr;
  BOOL swigCMemOwn;
}

Swift

class MSFPackageMetaInfo : NSObject

Package meta info element. Can contain JSON-style structured data, including objects and arrays.

  • Checks if this object is equal to the specified object.

    Declaration

    Objective-C

    - (BOOL)isEqual:(id)object;

    Swift

    func isEqual(_ object: Any!) -> Bool

    Parameters

    object

    The reference object.

    Return Value

    True when objects are equal, false otherwise.

  • Returns the hash value of this object.

    Declaration

    Objective-C

    - (NSUInteger)hash;

    Swift

    func hash() -> UInt

    Return Value

    The hash value of this object.

  • Constructs a new PackageMetaInfo object from existing JSON value.

    Declaration

    Objective-C

    - (id)initWithVar:(MSFVariant *)var;

    Swift

    init!(withVar var: MSFVariant!)

    Parameters

    var

    The variant to use.

  • Returns the underlying variant.

    Declaration

    Objective-C

    - (MSFVariant *)getVariant;

    Swift

    func getVariant() -> MSFVariant!

    Return Value

    The value of the metainfo.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()