luxlabs header browser preview


@class NSString, NSFetchIndexDescription, NSPropertyDescription;

@interface NSFetchIndexElementDescription : NSObject <NSSecureCoding, NSCoding, NSCopying> {
    NSPropertyDescription *_property;
    unsigned long long _collationType;
    NSFetchIndexDescription *_indexDescription;
    struct __indexElementDescriptionFlags { unsigned char _ascending : 1; unsigned char _propertyIsRetained : 1; unsigned char _unique : 1; unsigned int _reservedEntityDescription : 29; } _indexElementDescriptionFlags;
}

@property (class, readonly) BOOL supportsSecureCoding;

@property (readonly, retain) NSPropertyDescription *property;
@property (readonly, retain) NSString *propertyName;
@property unsigned long long collationType;
@property (getter=isAscending) BOOL ascending;
@property (readonly, nonatomic) NSFetchIndexDescription *indexDescription;

- (unsigned long long)hash;
- (void)dealloc;
- (void)encodeWithCoder:(id)a0;
- (id)description;
- (BOOL)isEqual:(id)a0;
- (id)initWithProperty:(id)a0 collationType:(unsigned long long)a1;
- (id)initWithCoder:(id)a0;
- (id)copyWithZone:(struct _NSZone { } *)a0;

@end