org.wegra.util.collection.array
Class Concat

java.lang.Object
  extended byorg.wegra.util.collection.array.Concat

public class Concat
extends java.lang.Object

Version:
1.0.0 (2003. 6. 26.)
Author:
wegra(Bok-Youn Lee)

Constructor Summary
Concat()
           
 
Method Summary
static byte[] concat(byte[] head, byte[] tail)
          Concatenates given two arrays and return it.
static char[] concat(char[] head, char[] tail)
          Concatenates given two arrays and return it.
static double[] concat(double[] head, double[] tail)
          Concatenates given two arrays and return it.
static float[] concat(float[] head, float[] tail)
          Concatenates given two arrays and return it.
static int[] concat(int[] head, int[] tail)
          Concatenates given two arrays and return it.
static long[] concat(long[] head, long[] tail)
          Concatenates given two arrays and return it.
static java.lang.Object[] concat(java.lang.Object[] head, java.lang.Object[] tail)
          Concatenates given two arrays and return it.
static short[] concat(short[] head, short[] tail)
          Concatenates given two arrays and return it.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Concat

public Concat()
Method Detail

concat

public static java.lang.Object[] concat(java.lang.Object[] head,
                                        java.lang.Object[] tail)
Concatenates given two arrays and return it.


concat

public static long[] concat(long[] head,
                            long[] tail)
Concatenates given two arrays and return it.


concat

public static int[] concat(int[] head,
                           int[] tail)
Concatenates given two arrays and return it.


concat

public static short[] concat(short[] head,
                             short[] tail)
Concatenates given two arrays and return it.


concat

public static char[] concat(char[] head,
                            char[] tail)
Concatenates given two arrays and return it.


concat

public static byte[] concat(byte[] head,
                            byte[] tail)
Concatenates given two arrays and return it.


concat

public static double[] concat(double[] head,
                              double[] tail)
Concatenates given two arrays and return it.


concat

public static float[] concat(float[] head,
                             float[] tail)
Concatenates given two arrays and return it.