22OF_ASSUME_NONNULL_BEGIN
40@property (nonatomic, copy)
OFString *stringValue;
49@property (readonly, nonatomic)
long long longLongValue
50 OF_DEPRECATED(ObjFW, 1, 3,
"Use .stringValue.longLongValue instead");
60@property (readonly, nonatomic)
unsigned long long unsignedLongLongValue
61 OF_DEPRECATED(ObjFW, 1, 3,
62 "Use .stringValue.unsignedLongLongValue instead");
71@property (readonly, nonatomic)
float floatValue
72 OF_DEPRECATED(ObjFW, 1, 3,
"Use .stringValue.floatValue instead");
81@property (readonly, nonatomic)
double doubleValue
82 OF_DEPRECATED(ObjFW, 1, 3,
"Use .doubleValue.floatValue instead");
91@property (readonly, nonatomic)
OFString *XMLString;
93- (instancetype)init OF_UNAVAILABLE;
108- (
long long)longLongValueWithBase: (
unsigned char)base
109 OF_DEPRECATED(ObjFW, 1, 3,
110 "Use [node.stringValue longLongValueWithBase:] instead");
125- (
unsigned long long)unsignedLongLongValueWithBase: (
unsigned char)base
126 OF_DEPRECATED(ObjFW, 1, 3,
127 "Use [node.stringValue unsignedLongLongValueWithBase:] instead");
The root class for all other classes inside ObjFW.
Definition OFObject.h:692
A class for handling strings.
Definition OFString.h:143
A class which stores an XML element.
Definition OFXMLNode.h:31
A protocol for the creation of copies.
Definition OFObject.h:1354