/**
  * Write an int into the byte stream.
  *
  * @param i int
  */
 public void write(int i) {
   writeInteger32ToByteArray(i);
 }
 /**
  * Write a float into the byte stream.
  *
  * @param f java.lang.Float
  */
 public void write(Float f) {
   writeInteger32ToByteArray(Float.floatToIntBits(f.floatValue()));
 }
 /** @param i java.lang.Integer */
 public void write(Integer i) {
   writeInteger32ToByteArray(i.intValue());
 }