Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
parseVersionAndFlags(content);
language = IsoTypeReader.readIso639(content);
contentDistributorId = IsoTypeReader.readString(content);
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
writeVersionAndFlags(byteBuffer);
IsoTypeWriter.writeIso639(byteBuffer, language);
byteBuffer.put(Utf8.convert(contentDistributorId));
byteBuffer.put((byte) 0);
|
public java.lang.String | getContentDistributorId()
return contentDistributorId;
|
protected long | getContentSize()
return 2 + Utf8.utf8StringLengthInBytes(contentDistributorId) + 5;
|
public java.lang.String | getLanguage()
return language;
|
public java.lang.String | toString()
return "ContentDistributorIdBox[language=" + getLanguage() + ";contentDistributorId=" + getContentDistributorId() + "]";
|