public class Dump
extends java.lang.Object
Constructor and Description |
---|
Dump() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
dump(byte[] buf)
Returns the Hex String that converted from byte array.
|
static java.lang.String |
dump(byte[] buf,
int length)
Returns the Hex String that converted from byte array.
|
static java.lang.String |
dump(byte[] buf,
int offset,
int length)
Returns the Hex String that converted from byte array.
|
static java.lang.String |
dump(int[] buf)
Returns the Decimal String that converted from integer array.
|
static java.lang.String |
dump(int[] buf,
int length)
Returns the Decimal String that converted from integer array.
|
static java.lang.String |
dump(int[] buf,
int offset,
int length)
Returns the Decimal String that converted from integer array.
|
static java.lang.String |
dump(java.lang.Object[] buf)
Returns the String that converted by toString method.
|
static java.lang.String |
dump(java.lang.Object[] buf,
int length)
Returns the String that converted by toString method.
|
static java.lang.String |
dump(java.lang.Object[] buf,
int offset,
int length)
Returns the String that converted by toString method.
|
public static java.lang.String dump(byte[] buf)
buf
- Byte array that include data.public static java.lang.String dump(byte[] buf, int length)
buf
- Byte array that include data.length
- An integer specifying the length of datapublic static java.lang.String dump(byte[] buf, int offset, int length)
buf
- Byte array that include data.offset
- An integer specifying the index to start converting from the buf.length
- An integer specifying the length of datapublic static java.lang.String dump(int[] buf)
buf
- Integer array that include data.public static java.lang.String dump(int[] buf, int length)
buf
- Integer array that include data.length
- An integer specifying the length of datapublic static java.lang.String dump(int[] buf, int offset, int length)
buf
- Integer array that include data.offset
- An integer specifying the index to start converting from the buf.length
- An integer specifying the length of datapublic static java.lang.String dump(java.lang.Object[] buf)
buf
- Object array that include data.public static java.lang.String dump(java.lang.Object[] buf, int length)
buf
- Object array that include data.length
- An integer specifying the length of datapublic static java.lang.String dump(java.lang.Object[] buf, int offset, int length)
buf
- Object array that include data.offset
- An integer specifying the index to start converting from the buf.length
- An integer specifying the length of data