Methods Summary |
---|
public java.lang.Object | clone(){@inheritDoc}
return super.clone();
|
public void | copyContent(org.jaudiotagger.tag.TagField field){@inheritDoc}
throw new UnsupportedOperationException("Not implemented yet.");
|
public org.jaudiotagger.audio.asf.data.MetadataDescriptor | getDescriptor()Returns the wrapped metadata descriptor (which actually stores the
values).
return this.toWrap;
|
public java.lang.String | getId(){@inheritDoc}
return this.toWrap.getName();
|
public byte[] | getRawContent(){@inheritDoc}
return this.toWrap.getRawData();
|
public void | isBinary(boolean value){@inheritDoc}
if (!value && isBinary()) {
throw new UnsupportedOperationException("No conversion supported.");
}
this.toWrap.setBinaryValue(this.toWrap.getRawData());
|
public boolean | isBinary(){@inheritDoc}
return this.toWrap.getType() == MetadataDescriptor.TYPE_BINARY;
|
public boolean | isCommon(){@inheritDoc}
// HashSet is safe against null comparison
return AsfTag.COMMON_FIELDS.contains(AsfFieldKey
.getAsfFieldKey(getId()));
|
public boolean | isEmpty(){@inheritDoc}
return this.toWrap.isEmpty();
|
public java.lang.String | toString(){@inheritDoc}
return this.toWrap.getString();
|