Package aj.org.objectweb.asm
Class ByteVector
- java.lang.Object
-
- aj.org.objectweb.asm.ByteVector
-
public class ByteVector extends Object
-
-
Constructor Summary
Constructors Constructor Description ByteVector()ByteVector(int initialCapacity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteVectorputByte(int byteValue)ByteVectorputByteArray(byte[] byteArrayValue, int byteOffset, int byteLength)ByteVectorputInt(int intValue)ByteVectorputLong(long longValue)ByteVectorputShort(int shortValue)ByteVectorputUTF8(String stringValue)
-
-
-
Method Detail
-
putByte
public ByteVector putByte(int byteValue)
-
putShort
public ByteVector putShort(int shortValue)
-
putInt
public ByteVector putInt(int intValue)
-
putLong
public ByteVector putLong(long longValue)
-
putUTF8
public ByteVector putUTF8(String stringValue)
-
putByteArray
public ByteVector putByteArray(byte[] byteArrayValue, int byteOffset, int byteLength)
-
-