Uses of Class
com.drew.lang.annotations.NotNull

Packages that use NotNull
com.drew.imaging Contains classes for working with image file formats and photographic conversions. 
com.drew.imaging.jpeg Contains classes for working with JPEG files. 
com.drew.imaging.psd Contains classes for working with PSD files. 
com.drew.imaging.tiff Contains classes for working with TIFF format files. 
com.drew.lang Contains classes of generic utility. 
com.drew.metadata Provides classes for generic modelling of metadata directories and tags. 
com.drew.metadata.adobe   
com.drew.metadata.exif Contains classes for the extraction and modelling of Exif metadata and camera manufacturer-specific makernotes. 
com.drew.metadata.icc   
com.drew.metadata.iptc Contains classes for the extraction and modelling of IPTC metadata. 
com.drew.metadata.jfif Contains classes for the extraction and modelling of JFIF metadata. 
com.drew.metadata.jpeg Contains classes for the extraction and modelling of JPEG file format metadata. 
com.drew.metadata.photoshop Contains classes for the extraction and modelling of Photoshop metadata. 
com.drew.metadata.xmp Contains classes for the extraction and modelling of Adobe's XMP metadata. 
 

Uses of NotNull in com.drew.imaging
 

Methods in com.drew.imaging with annotations of type NotNull
static Metadata ImageMetadataReader.readMetadata(BufferedInputStream inputStream, boolean waitForBytes)
          Reads metadata from an input stream.
static Metadata ImageMetadataReader.readMetadata(File file)
          Reads metadata from a file.
 

Method parameters in com.drew.imaging with annotations of type NotNull
static void ImageMetadataReader.main(String[] args)
          An application entry point.
static Metadata ImageMetadataReader.readMetadata(BufferedInputStream inputStream, boolean waitForBytes)
          Reads metadata from an input stream.
static Metadata ImageMetadataReader.readMetadata(File file)
          Reads metadata from a file.
 

Uses of NotNull in com.drew.imaging.jpeg
 

Methods in com.drew.imaging.jpeg with annotations of type NotNull
static Metadata JpegMetadataReader.extractMetadataFromJpegSegmentReader(JpegSegmentData segmentReader)
           
static JpegSegmentData JpegSegmentData.fromFile(File file)
          Deserialises the contents of a JpegSegmentData from a file.
 JpegSegmentData JpegSegmentReader.getSegmentData()
          Returns the JpegSegmentData object used by this reader.
 Iterable<byte[]> JpegSegmentData.getSegments(byte segmentMarker)
          Returns all instances of a given Jpeg segment.
static Metadata JpegMetadataReader.readMetadata(File file)
           
static Metadata JpegMetadataReader.readMetadata(InputStream inputStream)
           
static Metadata JpegMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
           
 Iterable<byte[]> JpegSegmentReader.readSegments(byte segmentMarker)
          Returns all instances of a given Jpeg segment.
 

Method parameters in com.drew.imaging.jpeg with annotations of type NotNull
 void JpegSegmentData.addSegment(byte segmentMarker, byte[] segmentBytes)
          Adds segment bytes to the collection.
static Metadata JpegMetadataReader.extractMetadataFromJpegSegmentReader(JpegSegmentData segmentReader)
           
static JpegSegmentData JpegSegmentData.fromFile(File file)
          Deserialises the contents of a JpegSegmentData from a file.
static Metadata JpegMetadataReader.readMetadata(File file)
           
static Metadata JpegMetadataReader.readMetadata(InputStream inputStream)
           
static Metadata JpegMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
           
static void JpegSegmentData.toFile(File file, JpegSegmentData segmentData)
          Serialises the contents of a JpegSegmentData to a file.
static void JpegSegmentData.toFile(File file, JpegSegmentData segmentData)
          Serialises the contents of a JpegSegmentData to a file.
 

Constructor parameters in com.drew.imaging.jpeg with annotations of type NotNull
JpegSegmentReader(byte[] fileContents)
          Creates a JpegSegmentReader for a byte array.
JpegSegmentReader(File file)
          Creates a JpegSegmentReader for a specific file.
JpegSegmentReader(InputStream inputStream, boolean waitForBytes)
          Creates a JpegSegmentReader for an InputStream.
 

Uses of NotNull in com.drew.imaging.psd
 

Methods in com.drew.imaging.psd with annotations of type NotNull
static Metadata PsdMetadataReader.readMetadata(File file)
           
static Metadata PsdMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
           
 

Method parameters in com.drew.imaging.psd with annotations of type NotNull
static Metadata PsdMetadataReader.readMetadata(File file)
           
static Metadata PsdMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
           
 

Uses of NotNull in com.drew.imaging.tiff
 

Methods in com.drew.imaging.tiff with annotations of type NotNull
static Metadata TiffMetadataReader.readMetadata(File file)
           
static Metadata TiffMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
          Deprecated. 
 

Method parameters in com.drew.imaging.tiff with annotations of type NotNull
static Metadata TiffMetadataReader.readMetadata(File file)
           
static Metadata TiffMetadataReader.readMetadata(InputStream inputStream, boolean waitForBytes)
          Deprecated. 
 

Uses of NotNull in com.drew.lang
 

Methods in com.drew.lang with annotations of type NotNull
static double[] GeoLocation.decimalToDegreesMinutesSeconds(double decimal)
          Converts a decimal degree angle into its corresponding DMS (degrees-minutes-seconds) component values, as a double array.
static String GeoLocation.decimalToDegreesMinutesSecondsString(double decimal)
          Converts a decimal degree angle into its corresponding DMS (degrees-minutes-seconds) representation as a string, of format: -1° 23' 4.56"
 byte[] RandomAccessFileReader.getBytes(int index, int count)
           
 byte[] ByteArrayReader.getBytes(int index, int count)
           
 byte[] BufferReader.getBytes(int index, int count)
           
 String RandomAccessFileReader.getNullTerminatedString(int index, int maxLengthBytes)
           
 String ByteArrayReader.getNullTerminatedString(int index, int maxLengthBytes)
           
 String BufferReader.getNullTerminatedString(int index, int maxLengthBytes)
          Creates a String from the _data buffer starting at the specified index, and ending where byte=='\0' or where length==maxLength.
 Rational Rational.getReciprocal()
          Returns the reciprocal value of this object as a new Rational.
 Rational Rational.getSimplifiedInstance()
           Simplifies the Rational number.
 String RandomAccessFileReader.getString(int index, int bytesRequested)
           
 String ByteArrayReader.getString(int index, int bytesRequested)
           
 String BufferReader.getString(int index, int bytesRequested)
           
 String RandomAccessFileReader.getString(int index, int bytesRequested, String charset)
           
 String ByteArrayReader.getString(int index, int bytesRequested, String charset)
           
 String BufferReader.getString(int index, int bytesRequested, String charset)
           
 String GeoLocation.toDMSString()
           
 String Rational.toSimpleString(boolean allowDecimal)
          Returns the simplest representation of this Rational's value possible.
 String Rational.toString()
          Returns a string representation of the object of form numerator/denominator.
 String GeoLocation.toString()
           
 String CompoundException.toString()
           
 

Method parameters in com.drew.lang with annotations of type NotNull
static Double GeoLocation.degreesMinutesSecondsToDecimal(Rational degs, Rational mins, Rational secs, boolean isNegative)
          Converts DMS (degrees-minutes-seconds) rational values, as given in GpsDirectory, into a single value in degrees, as a double.
static Double GeoLocation.degreesMinutesSecondsToDecimal(Rational degs, Rational mins, Rational secs, boolean isNegative)
          Converts DMS (degrees-minutes-seconds) rational values, as given in GpsDirectory, into a single value in degrees, as a double.
static Double GeoLocation.degreesMinutesSecondsToDecimal(Rational degs, Rational mins, Rational secs, boolean isNegative)
          Converts DMS (degrees-minutes-seconds) rational values, as given in GpsDirectory, into a single value in degrees, as a double.
static String StringUtil.join(Iterable<? extends CharSequence> strings, String delimiter)
           
static String StringUtil.join(Iterable<? extends CharSequence> strings, String delimiter)
           
static
<T extends CharSequence>
String
StringUtil.join(T[] strings, String delimiter)
           
static
<T extends CharSequence>
String
StringUtil.join(T[] strings, String delimiter)
           
 void CompoundException.printStackTrace(PrintStream s)
           
 void CompoundException.printStackTrace(PrintWriter s)
           
 

Constructor parameters in com.drew.lang with annotations of type NotNull
BufferBoundsException(byte[] buffer, int index, int bytesRequested)
           
ByteArrayReader(byte[] buffer)
           
RandomAccessFileReader(RandomAccessFile file)
           
 

Uses of NotNull in com.drew.metadata
 

Fields in com.drew.metadata with annotations of type NotNull
protected  Collection<Tag> Directory._definedTagList
          A convenient list holding tag values in the order in which they were stored.
protected  T TagDescriptor._directory
           
protected  Map<Integer,Object> Directory._tagMap
          Map of values hashed by type identifiers.
 

Methods in com.drew.metadata with annotations of type NotNull
 Iterable<Directory> Metadata.getDirectories()
          Returns an objects for iterating over Directory objects in the order in which they were added.
 String Tag.getDirectoryName()
          Get the name of the directory in which the tag exists, such as Exif, GPS or Interoperability.
 Iterable<String> Directory.getErrors()
          Used to iterate over any error messages contained in this directory.
abstract  String Directory.getName()
          Provides the name of the directory, for display purposes.
<T extends Directory>
T
Metadata.getOrCreateDirectory(Class<T> type)
          Returns a Directory of specified type.
 String Tag.getTagName()
          Get the name of the tag, such as Aperture, or InteropVersion.
 String Directory.getTagName(int tagType)
          Returns the name of a specified tag as a String.
 String DefaultTagDescriptor.getTagName(int tagType)
          Gets a best-effort tag name using the format 'Unknown tag 0x00' (with the corresponding tag type in hex).
protected abstract  HashMap<Integer,String> Directory.getTagNameMap()
          Provides the map of tag names, hashed by tag type identifier.
 Collection<Tag> Directory.getTags()
          Returns an Iterator of Tag instances that have been set in this Directory.
 String Tag.getTagTypeHex()
          Gets the tag type in hex notation as a String with padded leading zeroes if necessary (i.e.
 String Tag.toString()
          A basic representation of the tag's type and value.
 String Face.toString()
           
 

Method parameters in com.drew.metadata with annotations of type NotNull
 void Directory.addError(String message)
          Registers an error message with this directory.
 void MetadataReader.extract(BufferReader reader, Metadata metadata)
          Extract metadata from the source and merge it into an existing Metadata object.
 void MetadataReader.extract(BufferReader reader, Metadata metadata)
          Extract metadata from the source and merge it into an existing Metadata object.
static Age Age.fromPanasonicString(String s)
          Parses an age object from the string format used by Panasonic cameras: 0031:07:15 00:00:00
<T extends Directory>
T
Metadata.getDirectory(Class<T> type)
          If this Metadata object contains a Directory of the specified type, it is returned.
<T extends Directory>
T
Metadata.getOrCreateDirectory(Class<T> type)
          Returns a Directory of specified type.
 void Directory.setByteArray(int tagType, byte[] bytes)
          Sets a byte[] (array) for the specified tag.
 void Directory.setDate(int tagType, Date value)
          Sets a java.util.Date value for the specified tag.
 void Directory.setDescriptor(TagDescriptor descriptor)
          Sets the descriptor used to interpret tag values.
 void Directory.setDoubleArray(int tagType, double[] doubles)
          Sets a double[] (array) for the specified tag.
 void Directory.setFloatArray(int tagType, float[] floats)
          Sets a float[] (array) for the specified tag.
 void Directory.setIntArray(int tagType, int[] ints)
          Sets an int[] (array) for the specified tag.
 void Directory.setObject(int tagType, Object value)
          Sets a Object for the specified tag.
 void Directory.setObjectArray(int tagType, Object array)
          Sets an array Object for the specified tag.
 void Directory.setRational(int tagType, Rational rational)
          Sets a Rational value for the specified tag.
 void Directory.setRationalArray(int tagType, Rational[] rationals)
          Sets a Rational[] (array) for the specified tag.
 void Directory.setString(int tagType, String value)
          Sets a String value for the specified tag.
 void Directory.setStringArray(int tagType, String[] strings)
          Sets a String[] (array) for the specified tag.
 

Constructor parameters in com.drew.metadata with annotations of type NotNull
DefaultTagDescriptor(Directory directory)
           
Tag(int tagType, Directory directory)
           
TagDescriptor(T directory)
           
 

Uses of NotNull in com.drew.metadata.adobe
 

Methods in com.drew.metadata.adobe with annotations of type NotNull
 String AdobeJpegDirectory.getName()
           
protected  HashMap<Integer,String> AdobeJpegDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.adobe with annotations of type NotNull
 void AdobeJpegReader.extract(BufferReader reader, Metadata metadata)
           
 void AdobeJpegReader.extract(BufferReader reader, Metadata metadata)
           
 

Uses of NotNull in com.drew.metadata.exif
 

Fields in com.drew.metadata.exif with annotations of type NotNull
protected static HashMap<Integer,String> SonyType6MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> SonyType1MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> SigmaMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> PentaxMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> PanasonicMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> OlympusMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> NikonType2MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> NikonType1MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> KyoceraMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> KodakMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> GpsDirectory._tagNameMap
           
protected static HashMap<Integer,String> FujifilmMakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> ExifThumbnailDirectory._tagNameMap
           
protected static HashMap<Integer,String> ExifSubIFDDirectory._tagNameMap
           
protected static HashMap<Integer,String> ExifInteropDirectory._tagNameMap
           
protected static HashMap<Integer,String> ExifIFD0Directory._tagNameMap
           
protected static HashMap<Integer,String> CasioType2MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> CasioType1MakernoteDirectory._tagNameMap
           
protected static HashMap<Integer,String> CanonMakernoteDirectory._tagNameMap
           
static DataFormat DataFormat.BYTE
           
static DataFormat DataFormat.DOUBLE
           
static DataFormat DataFormat.SBYTE
           
static DataFormat DataFormat.SINGLE
           
static DataFormat DataFormat.SLONG
           
static DataFormat DataFormat.SRATIONAL
           
static DataFormat DataFormat.SSHORT
           
static DataFormat DataFormat.STRING
           
static DataFormat DataFormat.ULONG
           
static DataFormat DataFormat.UNDEFINED
           
static DataFormat DataFormat.URATIONAL
           
static DataFormat DataFormat.USHORT
           
 

Methods in com.drew.metadata.exif with annotations of type NotNull
static DataFormat DataFormat.fromValue(int value)
           
 String NikonType2MakernoteDescriptor.getAutoFlashCompensationDescription()
           
 String NikonType2MakernoteDescriptor.getExposureTuningDescription()
           
 String NikonType2MakernoteDescriptor.getFlashBracketCompensationDescription()
           
 String NikonType2MakernoteDescriptor.getFlashExposureCompensationDescription()
           
 String NikonType2MakernoteDescriptor.getLensStopsDescription()
           
 String SonyType6MakernoteDirectory.getName()
           
 String SonyType1MakernoteDirectory.getName()
           
 String SigmaMakernoteDirectory.getName()
           
 String PentaxMakernoteDirectory.getName()
           
 String PanasonicMakernoteDirectory.getName()
           
 String OlympusMakernoteDirectory.getName()
           
 String NikonType2MakernoteDirectory.getName()
           
 String NikonType1MakernoteDirectory.getName()
           
 String KyoceraMakernoteDirectory.getName()
           
 String KodakMakernoteDirectory.getName()
           
 String GpsDirectory.getName()
           
 String FujifilmMakernoteDirectory.getName()
           
 String ExifThumbnailDirectory.getName()
           
 String ExifSubIFDDirectory.getName()
           
 String ExifInteropDirectory.getName()
           
 String ExifIFD0Directory.getName()
           
 String CasioType2MakernoteDirectory.getName()
           
 String CasioType1MakernoteDirectory.getName()
           
 String CanonMakernoteDirectory.getName()
           
protected  HashMap<Integer,String> SonyType6MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> SonyType1MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> SigmaMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> PentaxMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> PanasonicMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> OlympusMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> NikonType2MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> NikonType1MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> KyoceraMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> KodakMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> GpsDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> FujifilmMakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> ExifThumbnailDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> ExifSubIFDDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> ExifInteropDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> ExifIFD0Directory.getTagNameMap()
           
protected  HashMap<Integer,String> CasioType2MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> CasioType1MakernoteDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> CanonMakernoteDirectory.getTagNameMap()
           
 String DataFormat.toString()
           
 

Method parameters in com.drew.metadata.exif with annotations of type NotNull
 void ExifReader.extract(BufferReader reader, Metadata metadata)
          Performs the Exif data extraction, adding found values to the specified instance of Metadata.
 void ExifReader.extract(BufferReader reader, Metadata metadata)
          Performs the Exif data extraction, adding found values to the specified instance of Metadata.
 void ExifReader.extractTiff(BufferReader reader, Metadata metadata)
          Performs the Exif data extraction on a TIFF/RAW, adding found values to the specified instance of Metadata.
 void ExifReader.extractTiff(BufferReader reader, Metadata metadata)
          Performs the Exif data extraction on a TIFF/RAW, adding found values to the specified instance of Metadata.
 void CanonMakernoteDirectory.setIntArray(int tagType, int[] ints)
           
 void ExifThumbnailDirectory.writeThumbnail(String filename)
           
 

Constructor parameters in com.drew.metadata.exif with annotations of type NotNull
CanonMakernoteDescriptor(CanonMakernoteDirectory directory)
           
CasioType1MakernoteDescriptor(CasioType1MakernoteDirectory directory)
           
CasioType2MakernoteDescriptor(CasioType2MakernoteDirectory directory)
           
ExifIFD0Descriptor(ExifIFD0Directory directory)
           
ExifInteropDescriptor(ExifInteropDirectory directory)
           
ExifSubIFDDescriptor(ExifSubIFDDirectory directory)
           
ExifThumbnailDescriptor(ExifThumbnailDirectory directory)
           
FujifilmMakernoteDescriptor(FujifilmMakernoteDirectory directory)
           
GpsDescriptor(GpsDirectory directory)
           
KodakMakernoteDescriptor(KodakMakernoteDirectory directory)
           
KyoceraMakernoteDescriptor(KyoceraMakernoteDirectory directory)
           
NikonType1MakernoteDescriptor(NikonType1MakernoteDirectory directory)
           
NikonType2MakernoteDescriptor(NikonType2MakernoteDirectory directory)
           
OlympusMakernoteDescriptor(OlympusMakernoteDirectory directory)
           
PanasonicMakernoteDescriptor(PanasonicMakernoteDirectory directory)
           
PentaxMakernoteDescriptor(PentaxMakernoteDirectory directory)
           
SigmaMakernoteDescriptor(SigmaMakernoteDirectory directory)
           
SonyType1MakernoteDescriptor(SonyType1MakernoteDirectory directory)
           
SonyType6MakernoteDescriptor(SonyType6MakernoteDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.icc
 

Fields in com.drew.metadata.icc with annotations of type NotNull
protected static HashMap<Integer,String> IccDirectory._tagNameMap
           
 

Methods in com.drew.metadata.icc with annotations of type NotNull
static String IccDescriptor.formatDoubleAsString(double value, int precision, boolean zeroes)
           
 String IccDirectory.getName()
           
static String IccReader.getStringFromInt32(int d)
           
protected  HashMap<Integer,String> IccDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.icc with annotations of type NotNull
 void IccReader.extract(BufferReader reader, Metadata metadata)
           
 void IccReader.extract(BufferReader reader, Metadata metadata)
           
 

Constructor parameters in com.drew.metadata.icc with annotations of type NotNull
IccDescriptor(IccDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.iptc
 

Fields in com.drew.metadata.iptc with annotations of type NotNull
protected static HashMap<Integer,String> IptcDirectory._tagNameMap
           
 

Methods in com.drew.metadata.iptc with annotations of type NotNull
 String IptcDirectory.getName()
           
protected  HashMap<Integer,String> IptcDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.iptc with annotations of type NotNull
 void IptcReader.extract(BufferReader reader, Metadata metadata)
          Performs the IPTC data extraction, adding found values to the specified instance of Metadata.
 void IptcReader.extract(BufferReader reader, Metadata metadata)
          Performs the IPTC data extraction, adding found values to the specified instance of Metadata.
 

Constructor parameters in com.drew.metadata.iptc with annotations of type NotNull
IptcDescriptor(IptcDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.jfif
 

Fields in com.drew.metadata.jfif with annotations of type NotNull
protected static HashMap<Integer,String> JfifDirectory._tagNameMap
           
 

Methods in com.drew.metadata.jfif with annotations of type NotNull
 String JfifDirectory.getName()
           
protected  HashMap<Integer,String> JfifDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.jfif with annotations of type NotNull
 void JfifReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jfif data extraction, adding found values to the specified instance of Metadata.
 void JfifReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jfif data extraction, adding found values to the specified instance of Metadata.
 

Constructor parameters in com.drew.metadata.jfif with annotations of type NotNull
JfifDescriptor(JfifDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.jpeg
 

Fields in com.drew.metadata.jpeg with annotations of type NotNull
protected static HashMap<Integer,String> JpegDirectory._tagNameMap
           
protected static HashMap<Integer,String> JpegCommentDirectory._tagNameMap
           
 

Methods in com.drew.metadata.jpeg with annotations of type NotNull
 String JpegDirectory.getName()
           
 String JpegCommentDirectory.getName()
           
protected  HashMap<Integer,String> JpegDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> JpegCommentDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.jpeg with annotations of type NotNull
 void JpegReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jpeg data extraction, adding found values to the specified instance of Metadata.
 void JpegReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jpeg data extraction, adding found values to the specified instance of Metadata.
 void JpegCommentReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jpeg data extraction, adding found values to the specified instance of Metadata.
 void JpegCommentReader.extract(BufferReader reader, Metadata metadata)
          Performs the Jpeg data extraction, adding found values to the specified instance of Metadata.
 

Constructor parameters in com.drew.metadata.jpeg with annotations of type NotNull
JpegCommentDescriptor(JpegCommentDirectory directory)
           
JpegDescriptor(JpegDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.photoshop
 

Fields in com.drew.metadata.photoshop with annotations of type NotNull
protected static HashMap<Integer,String> PsdHeaderDirectory._tagNameMap
           
protected static HashMap<Integer,String> PhotoshopDirectory._tagNameMap
           
 

Methods in com.drew.metadata.photoshop with annotations of type NotNull
 String PsdHeaderDirectory.getName()
           
 String PhotoshopDirectory.getName()
           
protected  HashMap<Integer,String> PsdHeaderDirectory.getTagNameMap()
           
protected  HashMap<Integer,String> PhotoshopDirectory.getTagNameMap()
           
 

Method parameters in com.drew.metadata.photoshop with annotations of type NotNull
 void PsdReader.extract(BufferReader reader, Metadata metadata)
           
 void PsdReader.extract(BufferReader reader, Metadata metadata)
           
 void PhotoshopReader.extract(BufferReader reader, Metadata metadata)
           
 void PhotoshopReader.extract(BufferReader reader, Metadata metadata)
           
 

Constructor parameters in com.drew.metadata.photoshop with annotations of type NotNull
PhotoshopDescriptor(PhotoshopDirectory directory)
           
PsdHeaderDescriptor(PsdHeaderDirectory directory)
           
 

Uses of NotNull in com.drew.metadata.xmp
 

Fields in com.drew.metadata.xmp with annotations of type NotNull
protected static HashMap<Integer,String> XmpDirectory._tagNameMap
           
 

Methods in com.drew.metadata.xmp with annotations of type NotNull
 String XmpDirectory.getName()
           
protected  HashMap<Integer,String> XmpDirectory.getTagNameMap()
           
 Map<String,String> XmpDirectory.getXmpProperties()
          Gets a map of all XMP properties in this directory, not just the known ones.
 

Method parameters in com.drew.metadata.xmp with annotations of type NotNull
 void XmpReader.extract(BufferReader reader, Metadata metadata)
          Performs the XMP data extraction, adding found values to the specified instance of Metadata.
 void XmpReader.extract(BufferReader reader, Metadata metadata)
          Performs the XMP data extraction, adding found values to the specified instance of Metadata.
 void XmpDirectory.setXMPMeta(com.adobe.xmp.XMPMeta xmpMeta)
           
 

Constructor parameters in com.drew.metadata.xmp with annotations of type NotNull
XmpDescriptor(XmpDirectory directory)
           
 



Copyright © 2012. All Rights Reserved.