Merge "ExifInterface: deprecate duplicated tags" into nyc-dev

This commit is contained in:
Jaesung Chung
2016-03-31 23:04:42 +00:00
committed by Android (Google) Code Review
4 changed files with 20 additions and 10 deletions

View File

@@ -161,9 +161,14 @@ public class ExifInterface {
public static final String TAG_EXPOSURE_PROGRAM = "ExposureProgram";
/** Type is double. */
public static final String TAG_EXPOSURE_TIME = "ExposureTime";
/** Type is String. */
/** Type is double. */
public static final String TAG_F_NUMBER = "FNumber";
/** Type is String. */
/**
* Type is double.
*
* @deprecated use {@link #TAG_F_NUMBER} instead
*/
@Deprecated
public static final String TAG_APERTURE = "FNumber";
/** Type is String. */
public static final String TAG_FILE_SOURCE = "FileSource";
@@ -185,9 +190,14 @@ public class ExifInterface {
public static final String TAG_FOCAL_PLANE_Y_RESOLUTION = "FocalPlaneYResolution";
/** Type is rational. */
public static final String TAG_GAIN_CONTROL = "GainControl";
/** Type is String. */
/** Type is int. */
public static final String TAG_ISO_SPEED_RATINGS = "ISOSpeedRatings";
/** Type is String. */
/**
* Type is int.
*
* @deprecated use {@link #TAG_ISO_SPEED_RATINGS} instead
*/
@Deprecated
public static final String TAG_ISO = "ISOSpeedRatings";
/** Type is String. */
public static final String TAG_IMAGE_UNIQUE_ID = "ImageUniqueID";