public class BulkArrayConverter
extends java.lang.Object
multiplesToBulk(java.lang.Object[])
will return an two dimensional array.
Similarly if you pass a two dimensional array to bulkToMultiples(java.lang.Object[])
you
will get back a three dimensional array.Constructor and Description |
---|
BulkArrayConverter() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
bulkToMultiples(java.lang.Object[] bulk_)
This method takes an array object and return parallel arrays, from which
the passed array was originally created. eg: if you pass a two dimensional
array then the method will return an three dimensional array.
|
void |
clear()
Clears the state of converter so it can used for new array conversions.
|
boolean |
isInitialized()
Returns whether the converter has been initialized.
|
java.lang.Object[] |
multiplesToBulk(java.lang.Object[] multiples_)
This method takes an array of array and converts into a single array of
length of combined array's. eg: if you have a three dimensional array
then the method will return an two dimensional array.
|
public java.lang.Object[] multiplesToBulk(java.lang.Object[] multiples_)
multiples_
- array's to be converted to bulk array.public java.lang.Object bulkToMultiples(java.lang.Object[] bulk_)
bulk_
- array to split into parallel arrays. This can be array of mixed
types, if the original array's were of mixed type.public boolean isInitialized()
true
if the converter object is initialized, otherwise
false
public void clear()
Copyright © 2003-2024 Appian Corporation. All Rights Reserved.