Example usage for Java javax.imageio.metadata IIOMetadata fields, constructors, methods, implement or subclass
The text is from its open source code.
Node | getAsTree(String formatName) Returns an XML DOM Node object that represents the root of a tree of metadata contained within this object according to the conventions defined by a given metadata format. |
String[] | getMetadataFormatNames() Returns an array of String s containing the names of all metadata formats, including the native and standard formats, recognized by this plug-in's getAsTree , setFromTree , and mergeTree methods. |
String | getNativeMetadataFormatName() Returns the name of the "native" metadata format for this plug-in, which typically allows for lossless encoding and transmission of the metadata stored in the format handled by this plug-in. |
boolean | isReadOnly() Returns true if this object does not support the mergeTree , setFromTree , and reset methods. |
boolean | isStandardMetadataFormatSupported() Returns true if the standard metadata format is supported by getMetadataFormat , getAsTree , setFromTree , and mergeTree . |
void | mergeTree(String formatName, Node root) Alters the internal state of this IIOMetadata object from a tree of XML DOM Node s whose syntax is defined by the given metadata format. |
void | setFromTree(String formatName, Node root) Sets the internal state of this IIOMetadata object from a tree of XML DOM Node s whose syntax is defined by the given metadata format. |
String | toString() Returns a string representation of the object. |