Release 4.0.0-preview1-00172
[platform/core/csapi/tizenfx.git] / src / Tizen.Content.MediaContent / Tizen.Content.MediaContent / MediaInfoColumnKey.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Content.MediaContent
18 {
19     /// <summary>
20     /// Specifies the group keys for <see cref="MediaInfo"/>.
21     /// </summary>
22     public enum MediaInfoColumnKey
23     {
24         /// <summary>
25         /// Display name.
26         /// </summary>
27         DisplayName,
28         /// <summary>
29         /// Media type.
30         /// </summary>
31         Type,
32         /// <summary>
33         /// Mime type.
34         /// </summary>
35         MimeType,
36         /// <summary>
37         /// File size.
38         /// </summary>
39         Size,
40         /// <summary>
41         /// Date added.
42         /// </summary>
43         DateAdded,
44         /// <summary>
45         /// Date modified.
46         /// </summary>
47         DateModified,
48         /// <summary>
49         /// Content title.
50         /// </summary>
51         Title,
52         /// <summary>
53         /// Artist.
54         /// </summary>
55         Artist,
56         /// <summary>
57         /// Album artist.
58         /// </summary>
59         AlbumArtist,
60         /// <summary>
61         /// Genre.
62         /// </summary>
63         Genre,
64         /// <summary>
65         /// Composer.
66         /// </summary>
67         Composer = 10,
68         /// <summary>
69         /// Year.
70         /// </summary>
71         Year,
72         /// <summary>
73         /// Date recorded.
74         /// </summary>
75         DateRecorded,
76         /// <summary>
77         /// Copyright.
78         /// </summary>
79         Copyright,
80         /// <summary>
81         /// Track number.
82         /// </summary>
83         TrackNumber,
84         /// <summary>
85         /// Description.
86         /// </summary>
87         Description,
88         /// <summary>
89         /// Longitude.
90         /// </summary>
91         Longitude,
92         /// <summary>
93         /// Latitude.
94         /// </summary>
95         Latitude,
96         /// <summary>
97         /// Altitude.
98         /// </summary>
99         Altitude,
100         /// <summary>
101         /// Burst shot.
102         /// </summary>
103         BurstImage,
104         /// <summary>
105         /// Rating.
106         /// </summary>
107         Rating = 20,
108
109         /// <summary>
110         /// Provider.
111         /// </summary>
112         Provider = 22,
113
114         /// <summary>
115         /// Category.
116         /// </summary>
117         Category = 24,
118         /// <summary>
119         /// Location tag.
120         /// </summary>
121         LocationTag,
122         /// <summary>
123         /// Age rating.
124         /// </summary>
125         AgeRating,
126         /// <summary>
127         /// Weather.
128         /// </summary>
129         Weather = 28
130     }
131 }