Class CodeBuffer


  • @Deprecated
    final class CodeBuffer
    extends java.lang.Object
    Deprecated.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.nio.ByteBuffer buf
      Deprecated.
       
    • Constructor Summary

      Constructors 
      Constructor Description
      CodeBuffer()
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      int capacity()
      Deprecated.
       
      (package private) void copyTo​(java.nio.ByteBuffer dst)
      Deprecated.
       
      void emitByte​(byte x)
      Deprecated.
       
      void emitData​(java.nio.ByteBuffer data, int len)
      Deprecated.
       
      void emitDWord​(int x)
      Deprecated.
       
      void emitQWord​(long x)
      Deprecated.
       
      void emitWord​(short x)
      Deprecated.
       
      void ensureSpace()
      Deprecated.
       
      byte getByteAt​(int pos)
      Deprecated.
       
      int getDWordAt​(int pos)
      Deprecated.
       
      long getQWordAt​(int pos)
      Deprecated.
       
      short getWordAt​(int pos)
      Deprecated.
       
      void grow()
      Deprecated.
       
      int offset()
      Deprecated.
       
      void setByteAt​(int pos, byte x)
      Deprecated.
       
      void setDWordAt​(int pos, int x)
      Deprecated.
       
      void setQWordAt​(int pos, long x)
      Deprecated.
       
      void setWordAt​(int pos, short x)
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • buf

        private java.nio.ByteBuffer buf
        Deprecated.
    • Constructor Detail

      • CodeBuffer

        public CodeBuffer()
        Deprecated.
    • Method Detail

      • ensureSpace

        public final void ensureSpace()
        Deprecated.
      • grow

        public void grow()
        Deprecated.
      • copyTo

        final void copyTo​(java.nio.ByteBuffer dst)
        Deprecated.
      • offset

        public final int offset()
        Deprecated.
      • capacity

        public int capacity()
        Deprecated.
      • emitByte

        public final void emitByte​(byte x)
        Deprecated.
      • emitWord

        public final void emitWord​(short x)
        Deprecated.
      • emitDWord

        public final void emitDWord​(int x)
        Deprecated.
      • emitQWord

        public final void emitQWord​(long x)
        Deprecated.
      • emitData

        public final void emitData​(java.nio.ByteBuffer data,
                                   int len)
        Deprecated.
      • getByteAt

        public final byte getByteAt​(int pos)
        Deprecated.
      • getWordAt

        public final short getWordAt​(int pos)
        Deprecated.
      • getDWordAt

        public final int getDWordAt​(int pos)
        Deprecated.
      • getQWordAt

        public final long getQWordAt​(int pos)
        Deprecated.
      • setByteAt

        public final void setByteAt​(int pos,
                                    byte x)
        Deprecated.
      • setWordAt

        public final void setWordAt​(int pos,
                                    short x)
        Deprecated.
      • setDWordAt

        public final void setDWordAt​(int pos,
                                     int x)
        Deprecated.
      • setQWordAt

        public final void setQWordAt​(int pos,
                                     long x)
        Deprecated.