Package com.ibm.di.util
Class ByteBuffer
- java.lang.Object
-
- com.ibm.di.util.ByteBuffer
-
public class ByteBuffer extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ByteBuffer()ByteBuffer(byte[] buffer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappend(byte ch)voidappend(byte[] buf)voidappend(char ch)voidappend(int ch)voidappend(ByteBuffer buf)voidappend(java.lang.Object p1)voidappend(java.lang.String p1)byte[]getBuffer()byte[]getBytes()intlength()intnextByte()java.lang.StringnextCString()intnextInt()voidresetRead()java.lang.StringtoString()
-
-
-
Method Detail
-
append
public void append(ByteBuffer buf)
-
append
public void append(char ch)
-
append
public void append(byte ch)
-
append
public void append(byte[] buf)
-
append
public void append(int ch)
-
append
public void append(java.lang.Object p1)
-
append
public void append(java.lang.String p1)
-
length
public int length()
-
getBuffer
public byte[] getBuffer()
-
getBytes
public byte[] getBytes()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
resetRead
public void resetRead()
-
nextCString
public java.lang.String nextCString()
-
nextByte
public int nextByte()
-
nextInt
public int nextInt()
-
-