blob: ee8ab2c48d80a8381a457a11320f86873202e5a1 [file] [log] [blame]
package org.yaml.snakeyaml.array;
import java.util.Arrays;
public class ByteArr {
private byte[] bytes;
public ByteArr(){}
public ByteArr ( byte[] bytes ) {
this.bytes = bytes;
}
public String toString() {
return Arrays.toString(bytes);
}
public byte[] getBytes() {
return bytes;
}
public void setBytes(byte[] bytes) {
this.bytes = bytes;
}
}