public abstract class Skb_ArrayUtils extends Object
| Constructor and Description |
|---|
Skb_ArrayUtils() |
| Modifier and Type | Method and Description |
|---|---|
static Skb_Transformer<String[][],String[][]> |
FLIP_ARRAY()
Returns a transformer that flips table (an array of arrays).
|
static Skb_Transformer<String[][],String[][]> |
NORMALISE_ARRAY(int length)
Returns a transformer that normalises string arrays.
|
public static final Skb_Transformer<String[][],String[][]> FLIP_ARRAY()
row 1: a1, b1, c1 row 2: a2, b2, c2 row 3: a3, b3, c3the transformer will return a table of
row 1: a1, a2, a3 row 2: b1, b2, b3 row 3: c1, c2, c3A null table as input results in a null table in the output.
public static final Skb_Transformer<String[][],String[][]> NORMALISE_ARRAY(int length)
length - number of columns in the transformed string arrayCopyright © 2010–2015. All rights reserved.