All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.pvanassen.bplist.parser.BPListData Maven / Gradle / Ivy

The newest version!
package nl.pvanassen.bplist.parser;

class BPListData implements BPListElement {
    private final byte[] value;
    
    BPListData(byte[] value) {
        this.value = value;
    }
    @Override
    public BPListType getType() {
        return BPListType.DATA;
    }
    
    @Override
    public byte[] getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy