/**@class android.provider.MediaStore.Images.ImageColumns implements android.provider.MediaStore.MediaColumns Image metadata columns. */ var ImageColumns = { /** The description of the image */ DESCRIPTION : "description", /** The picasa id of the image @deprecated this value was only relevant for images hosted on Picasa, which are no longer supported. */ PICASA_ID : "picasa_id", /** Whether the video should be published as public or private */ IS_PRIVATE : "isprivate", /** The latitude where the image was captured. @deprecated location details are no longer indexed for privacy reasons, and this value is now always {@code null}. You can still manually obtain location metadata using {@link ExifInterface#getLatLong(float[])}. */ LATITUDE : "latitude", /** The longitude where the image was captured. @deprecated location details are no longer indexed for privacy reasons, and this value is now always {@code null}. You can still manually obtain location metadata using {@link ExifInterface#getLatLong(float[])}. */ LONGITUDE : "longitude", /**@removed promoted to parent interface */ DATE_TAKEN : "datetaken", /**@removed promoted to parent interface */ ORIENTATION : "orientation", /** The mini thumb id. @deprecated all thumbnails should be obtained via {@link android.provider.MediaStore.Images.Thumbnails#getThumbnail}, as this value is no longer supported. */ MINI_THUMB_MAGIC : "mini_thumb_magic", /**@removed promoted to parent interface */ BUCKET_ID : "bucket_id", /**@removed promoted to parent interface */ BUCKET_DISPLAY_NAME : "bucket_display_name", /**@removed promoted to parent interface */ GROUP_ID : "group_id", };