com.drew.metadata.wav.WavDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metadata-extractor Show documentation
Show all versions of metadata-extractor Show documentation
Java library for extracting EXIF, IPTC, XMP, ICC and other metadata from image and video files.
package com.drew.metadata.wav;
import com.drew.lang.annotations.NotNull;
import com.drew.lang.annotations.Nullable;
import com.drew.metadata.TagDescriptor;
/**
* @author Payton Garland
*/
public class WavDescriptor extends TagDescriptor
{
public WavDescriptor(@NotNull WavDirectory directory)
{
super(directory);
}
@Override
@Nullable
public String getDescription(int tagType)
{
return super.getDescription(tagType);
}
}