The list of methods to do Array Convert to are organized into topic(s).
short
arrayFillNonAtomic(byte bArray[], short bOff, short bLen, byte bValue) Fills the byte array (non-atomically) beginning at the specified position, for the specified length with the specified byte value.
byte tester = bArray[bOff];
if (bLen < 0) {
throw new ArrayIndexOutOfBoundsException();
while (bLen-- > 0) {
bArray[bOff++] = bValue;
return (short) (bOff + bLen);
...
void
arrayMoveWithin(Object[] array, int moveFrom, int moveTo, int numToMove) Moves a number of entries in an array to another point in the array, shifting those inbetween as required.
if (numToMove <= 0) {
return;
if (moveFrom == moveTo) {
return;
if (moveFrom < 0 || moveFrom >= array.length) {
throw new IllegalArgumentException("The moveFrom must be a valid array index");
...
String
arrayOfDoubleToString(double[] array) Provides a string representation for a given double array.
StringBuilder sb = new StringBuilder();
sb.append("[");
boolean firstIteration = true;
for (int i = 0; i < array.length; ++i) {
if (firstIteration) {
firstIteration = false;
} else {
sb.append(",");
...
String
arrayOfIntToString(int[] array) array Of Int To String
String s = "";
for (int i = 0; i < array.length; i++) {
s += array[i];
s += (i < array.length - 1 ? "," : "");
return "[" + s + "]";
IllegalArgumentException
arrayOfValuesToLookForIsEmpty() array Of Values To Look For Is Empty
return new IllegalArgumentException("The array of values to look for should not be empty");
String
arrayToCamelCase(String[] nameArray, int start, int end) array To Camel Case
StringBuilder sb = new StringBuilder();
boolean isFirst = true;
for (int i = start; i < end; i++) {
if (nameArray[i].length() > 0) {
if (isFirst) {
sb.append(nameArray[i].toLowerCase());
isFirst = false;
} else {
...
String
arrayToCSL(String[] vals) Converts an array of Strings to a comma-sperated-list.
if (vals == null) {
return null;
String csl = null;
boolean first = true;
for (int i = 0; i < vals.length; i++) {
if (vals[i] != null) {
if (first) {
...
double
arrayToDouble(final byte[] array, final int start) Convert the contents of the specified array to a
double, starting at an offset of
start.
int i;
int count;
long accum;
final int length;
final byte[] temp;
count = 0;
length = 8;
temp = new byte[length];
...
String
arrayToHTMLString(Object[] objectArray, int indent) Converts an array to an HTML string.
String value = "";
String indentString = "";
for (int i = 0; i < indent; i++)
indentString = indentString + spaceChar;
for (int i = 0; i < objectArray.length; i++) {
Object obj = objectArray[i];
if (obj.getClass().isArray()) {
value = value + arrayToHTMLString((Object[]) obj, indent + INDENT);
...