Methods Summary |
---|
public void | copyContent(org.jaudiotagger.tag.TagField field)This method copies the data of the given field to the current data.
|
public java.lang.String | getId()Returns the Id of the represented tag field.
This value should uniquely identify a kind of tag data, like title.
{@link org.jaudiotagger.audio.generic.AbstractTag} will use the "id" to summarize multiple
fields.
|
public byte[] | getRawContent()This method delivers the binary representation of the fields data in
order to be directly written to the file.
|
public boolean | isBinary()Determines whether the represented field contains (is made up of) binary
data, instead of text data.
Software can identify fields to be displayed because they are human
readable if this method returns false .
|
public void | isBinary(boolean b)This method will set the field to represent binary data.
Some implementations may support conversions.
As of now (Octobre 2005) there is no implementation really using this
method to perform useful operations.
|
public boolean | isCommon()Identifies a field to be of common use.
Some software may differ between common and not common fields. A common
one is for sure the title field. A web link may not be of common use for
tagging. However some file formats, or future development of users
expectations will make more fields common than now can be known.
|
public boolean | isEmpty()Determines whether the content of the field is empty.
|
public java.lang.String | toString()This method returns a human readable description of the fields contents.
For text fields it should be the text itself. Other fields containing
images may return a formatted string with image properties like width,
height and so on.
|