@@ -11,58 +11,58 @@ import Foundation
11
11
/// Represents a metadata option.
12
12
public struct MetadataOptions : OptionSet {
13
13
/// Size
14
- static let size = MetadataOptions ( rawValue: 1 << 0 )
14
+ public static let size = MetadataOptions ( rawValue: 1 << 0 )
15
15
16
16
/// MIME Type
17
- static let mimeType = MetadataOptions ( rawValue: 1 << 1 )
17
+ public static let mimeType = MetadataOptions ( rawValue: 1 << 1 )
18
18
19
19
/// Filename
20
- static let fileName = MetadataOptions ( rawValue: 1 << 2 )
20
+ public static let fileName = MetadataOptions ( rawValue: 1 << 2 )
21
21
22
22
/// Width
23
- static let width = MetadataOptions ( rawValue: 1 << 3 )
23
+ public static let width = MetadataOptions ( rawValue: 1 << 3 )
24
24
25
25
/// Height
26
- static let height = MetadataOptions ( rawValue: 1 << 4 )
26
+ public static let height = MetadataOptions ( rawValue: 1 << 4 )
27
27
28
28
/// Uploaded
29
- static let uploaded = MetadataOptions ( rawValue: 1 << 5 )
29
+ public static let uploaded = MetadataOptions ( rawValue: 1 << 5 )
30
30
31
31
/// Writeable
32
- static let writeable = MetadataOptions ( rawValue: 1 << 6 )
32
+ public static let writeable = MetadataOptions ( rawValue: 1 << 6 )
33
33
34
34
/// Cloud
35
- static let cloud = MetadataOptions ( rawValue: 1 << 7 )
35
+ public static let cloud = MetadataOptions ( rawValue: 1 << 7 )
36
36
37
37
/// Source URL
38
- static let sourceURL = MetadataOptions ( rawValue: 1 << 8 )
38
+ public static let sourceURL = MetadataOptions ( rawValue: 1 << 8 )
39
39
40
40
/// MD5
41
- static let MD5 = MetadataOptions ( rawValue: 1 << 9 )
41
+ public static let MD5 = MetadataOptions ( rawValue: 1 << 9 )
42
42
43
43
/// SHA224
44
- static let SHA224 = MetadataOptions ( rawValue: 1 << 10 )
44
+ public static let SHA224 = MetadataOptions ( rawValue: 1 << 10 )
45
45
46
46
/// SHA256
47
- static let SHA256 = MetadataOptions ( rawValue: 1 << 11 )
47
+ public static let SHA256 = MetadataOptions ( rawValue: 1 << 11 )
48
48
49
49
/// SHA384
50
- static let SHA384 = MetadataOptions ( rawValue: 1 << 12 )
50
+ public static let SHA384 = MetadataOptions ( rawValue: 1 << 12 )
51
51
52
52
/// SHA512
53
- static let SHA512 = MetadataOptions ( rawValue: 1 << 13 )
53
+ public static let SHA512 = MetadataOptions ( rawValue: 1 << 13 )
54
54
55
55
/// Location
56
- static let location = MetadataOptions ( rawValue: 1 << 14 )
56
+ public static let location = MetadataOptions ( rawValue: 1 << 14 )
57
57
58
58
/// Path
59
- static let path = MetadataOptions ( rawValue: 1 << 15 )
59
+ public static let path = MetadataOptions ( rawValue: 1 << 15 )
60
60
61
61
/// Container
62
- static let container = MetadataOptions ( rawValue: 1 << 16 )
62
+ public static let container = MetadataOptions ( rawValue: 1 << 16 )
63
63
64
64
/// Exif
65
- static let exif = MetadataOptions ( rawValue: 1 << 17 )
65
+ public static let exif = MetadataOptions ( rawValue: 1 << 17 )
66
66
67
67
public let rawValue : Int
68
68
0 commit comments