/** @since Available in iOS 8.0 and later. */ public CFString getDataType() { if (has(Keys.DataType())) { CFString val = get(Keys.DataType(), CFString.class); return val; } return null; }
/** @since Available in iOS 8.0 and later. */ public CMMetadataFormatDescriptionMetadataSpecification setDataType(CFString dataType) { set(Keys.DataType(), dataType); return this; }