< prev index next >

jdk/src/java.desktop/share/classes/javax/imageio/plugins/tiff/ExifInteroperabilityTagSet.java

Print this page




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.imageio.plugins.tiff;
  27 
  28 import java.util.ArrayList;
  29 import java.util.List;
  30 
  31 /**
  32  * A class representing the tags found in an Exif Interoperability IFD.
  33  *
  34  * @since 1.9
  35  * @see   ExifTIFFTagSet
  36  */
  37 public class ExifInteroperabilityTagSet extends TIFFTagSet {
  38     /**
  39      * A tag indicating the identification of the Interoperability rule
  40      * (type ASCII).
  41      *
  42      * @see #INTEROPERABILITY_INDEX_R98
  43      * @see #INTEROPERABILITY_INDEX_THM
  44      */
  45     public static final int TAG_INTEROPERABILITY_INDEX = 1;
  46 
  47     /**
  48      * A value to be used with the "InteroperabilityIndex" tag. Indicates
  49      * a file conforming to the R98 file specification of Recommended Exif
  50      * Interoperability Rules (ExifR98) or to the DCF basic file stipulated
  51      * by the Design Rule for Camera File System (type ASCII).
  52      *
  53      * @see #TAG_INTEROPERABILITY_INDEX
  54      */




  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.imageio.plugins.tiff;
  27 
  28 import java.util.ArrayList;
  29 import java.util.List;
  30 
  31 /**
  32  * A class representing the tags found in an Exif Interoperability IFD.
  33  *
  34  * @since 9
  35  * @see   ExifTIFFTagSet
  36  */
  37 public class ExifInteroperabilityTagSet extends TIFFTagSet {
  38     /**
  39      * A tag indicating the identification of the Interoperability rule
  40      * (type ASCII).
  41      *
  42      * @see #INTEROPERABILITY_INDEX_R98
  43      * @see #INTEROPERABILITY_INDEX_THM
  44      */
  45     public static final int TAG_INTEROPERABILITY_INDEX = 1;
  46 
  47     /**
  48      * A value to be used with the "InteroperabilityIndex" tag. Indicates
  49      * a file conforming to the R98 file specification of Recommended Exif
  50      * Interoperability Rules (ExifR98) or to the DCF basic file stipulated
  51      * by the Design Rule for Camera File System (type ASCII).
  52      *
  53      * @see #TAG_INTEROPERABILITY_INDEX
  54      */


< prev index next >