FileDocCategorySizeDatePackage
UnknownEntry.javaAPI Docmp4parser 1.0-RC-172046Wed Dec 19 20:10:37 GMT 2012com.googlecode.mp4parser.boxes.mp4.samplegrouping

UnknownEntry

public class UnknownEntry extends GroupEntry

Fields Summary
private ByteBuffer
content
Constructors Summary
public UnknownEntry()

    
Methods Summary
public booleanequals(java.lang.Object o)

        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        UnknownEntry that = (UnknownEntry) o;

        if (content != null ? !content.equals(that.content) : that.content != null) {
            return false;
        }

        return true;
    
public java.nio.ByteBufferget()

        return content.duplicate();
    
public java.nio.ByteBuffergetContent()

        return content;
    
public inthashCode()

        return content != null ? content.hashCode() : 0;
    
public voidparse(java.nio.ByteBuffer byteBuffer)

        this.content = (ByteBuffer) byteBuffer.duplicate().rewind();
    
public voidsetContent(java.nio.ByteBuffer content)

        this.content = (ByteBuffer) content.duplicate().rewind();
    
public java.lang.StringtoString()

        ByteBuffer bb = content.duplicate();
        bb.rewind();
        byte[] b = new byte[bb.limit()];
        bb.get(b);
        return "UnknownEntry{" +
                "content=" + Hex.encodeHex(b) +
                '}";