@@ -11,58 +11,58 @@ import Foundation
1111/// Represents a metadata option.
1212public struct MetadataOptions : OptionSet {
1313 /// Size
14- static let size = MetadataOptions ( rawValue: 1 << 0 )
14+ public static let size = MetadataOptions ( rawValue: 1 << 0 )
1515
1616 /// MIME Type
17- static let mimeType = MetadataOptions ( rawValue: 1 << 1 )
17+ public static let mimeType = MetadataOptions ( rawValue: 1 << 1 )
1818
1919 /// Filename
20- static let fileName = MetadataOptions ( rawValue: 1 << 2 )
20+ public static let fileName = MetadataOptions ( rawValue: 1 << 2 )
2121
2222 /// Width
23- static let width = MetadataOptions ( rawValue: 1 << 3 )
23+ public static let width = MetadataOptions ( rawValue: 1 << 3 )
2424
2525 /// Height
26- static let height = MetadataOptions ( rawValue: 1 << 4 )
26+ public static let height = MetadataOptions ( rawValue: 1 << 4 )
2727
2828 /// Uploaded
29- static let uploaded = MetadataOptions ( rawValue: 1 << 5 )
29+ public static let uploaded = MetadataOptions ( rawValue: 1 << 5 )
3030
3131 /// Writeable
32- static let writeable = MetadataOptions ( rawValue: 1 << 6 )
32+ public static let writeable = MetadataOptions ( rawValue: 1 << 6 )
3333
3434 /// Cloud
35- static let cloud = MetadataOptions ( rawValue: 1 << 7 )
35+ public static let cloud = MetadataOptions ( rawValue: 1 << 7 )
3636
3737 /// Source URL
38- static let sourceURL = MetadataOptions ( rawValue: 1 << 8 )
38+ public static let sourceURL = MetadataOptions ( rawValue: 1 << 8 )
3939
4040 /// MD5
41- static let MD5 = MetadataOptions ( rawValue: 1 << 9 )
41+ public static let MD5 = MetadataOptions ( rawValue: 1 << 9 )
4242
4343 /// SHA224
44- static let SHA224 = MetadataOptions ( rawValue: 1 << 10 )
44+ public static let SHA224 = MetadataOptions ( rawValue: 1 << 10 )
4545
4646 /// SHA256
47- static let SHA256 = MetadataOptions ( rawValue: 1 << 11 )
47+ public static let SHA256 = MetadataOptions ( rawValue: 1 << 11 )
4848
4949 /// SHA384
50- static let SHA384 = MetadataOptions ( rawValue: 1 << 12 )
50+ public static let SHA384 = MetadataOptions ( rawValue: 1 << 12 )
5151
5252 /// SHA512
53- static let SHA512 = MetadataOptions ( rawValue: 1 << 13 )
53+ public static let SHA512 = MetadataOptions ( rawValue: 1 << 13 )
5454
5555 /// Location
56- static let location = MetadataOptions ( rawValue: 1 << 14 )
56+ public static let location = MetadataOptions ( rawValue: 1 << 14 )
5757
5858 /// Path
59- static let path = MetadataOptions ( rawValue: 1 << 15 )
59+ public static let path = MetadataOptions ( rawValue: 1 << 15 )
6060
6161 /// Container
62- static let container = MetadataOptions ( rawValue: 1 << 16 )
62+ public static let container = MetadataOptions ( rawValue: 1 << 16 )
6363
6464 /// Exif
65- static let exif = MetadataOptions ( rawValue: 1 << 17 )
65+ public static let exif = MetadataOptions ( rawValue: 1 << 17 )
6666
6767 public let rawValue : Int
6868
0 commit comments