Пример #1
0
  public byte[] toByteArray() throws IOException {
    ByteArrayOutputStream baos = new ByteArrayOutputStream(512);
    DataOutputStream dos = new DataOutputStream(baos);

    dos.write(NameUtil.toByteArray(this.name));
    dos.writeShort(type.getValue());
    dos.writeShort(clazz.getValue());

    dos.flush();
    return baos.toByteArray();
  }