Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * RED5 Open Source Flash Server - http://code.google.com/p/red5/
 * 
 * Copyright (c) 2006-2010 by respective authors (see below). All rights reserved.
 * 
 * This library is free software; you can redistribute it and/or modify it under the 
 * terms of the GNU Lesser General Public License as published by the Free Software 
 * Foundation; either version 2.1 of the License, or (at your option) any later 
 * version. 
 * 
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY 
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public License along 
 * with this library; if not, write to the Free Software Foundation, Inc., 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
 */

import java.lang.reflect.Array;
import java.util.Collection;

public class Main {
    @SuppressWarnings({ "rawtypes" })
    public static Object toArray(Class<?> type, Collection collection) {
        if (byte.class.isAssignableFrom(type)) {
            return toByteArray(collection);
        } else if (short.class.isAssignableFrom(type)) {
            return toShortArray(collection);
        } else if (int.class.isAssignableFrom(type)) {
            return toIntegerArray(collection);
        } else if (long.class.isAssignableFrom(type)) {
            return toLongArray(collection);
        } else if (float.class.isAssignableFrom(type)) {
            return toFloatArray(collection);
        } else if (double.class.isAssignableFrom(type)) {
            return toDoubleArray(collection);
        } else if (boolean.class.isAssignableFrom(type)) {
            return toBooleanArray(collection);
        } else if (char.class.isAssignableFrom(type)) {
            return toCharacterArray(collection);
        } else {
            return toObjectArray(type, collection);
        }
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toByteArray(Collection collection) {
        byte[] ba = new byte[collection.size()];

        int i = 0;
        for (Object o : collection) {
            byte b = ((Byte) o).byteValue();
            ba[i++] = b;
        }

        return ba;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toShortArray(Collection collection) {
        short[] sa = new short[collection.size()];

        int i = 0;
        for (Object o : collection) {
            short s = ((Short) o).shortValue();
            sa[i++] = s;
        }

        return sa;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toIntegerArray(Collection collection) {
        int[] ia = new int[collection.size()];

        int i = 0;
        for (Object o : collection) {
            int j = ((Integer) o).intValue();
            ia[i++] = j;
        }

        return ia;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toLongArray(Collection collection) {
        long[] la = new long[collection.size()];

        int i = 0;
        for (Object o : collection) {
            long l = ((Long) o).longValue();
            la[i++] = l;
        }

        return la;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toFloatArray(Collection collection) {
        float[] fa = new float[collection.size()];

        int i = 0;
        for (Object o : collection) {
            float f = ((Float) o).floatValue();
            fa[i++] = f;
        }

        return fa;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toDoubleArray(Collection collection) {
        double[] da = new double[collection.size()];

        int i = 0;
        for (Object o : collection) {
            double d;
            if (o instanceof Integer) {
                d = (Integer) o;
            } else {
                d = ((Double) o).doubleValue();
            }
            da[i++] = d;
        }

        return da;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toBooleanArray(Collection collection) {
        boolean[] ba = new boolean[collection.size()];

        int i = 0;
        for (Object o : collection) {
            boolean b = ((Boolean) o).booleanValue();
            ba[i++] = b;
        }

        return ba;
    }

    @SuppressWarnings({ "rawtypes" })
    private static Object toCharacterArray(Collection collection) {
        char[] ca = new char[collection.size()];

        int i = 0;
        for (Object o : collection) {
            char c = ((Character) o).charValue();
            ca[i++] = c;
        }

        return ca;
    }

    @SuppressWarnings({ "unchecked", "rawtypes" })
    private static Object toObjectArray(Class<?> type, Collection collection) {
        return collection.toArray((Object[]) Array.newInstance(type, collection.size()));
    }
}