com.l2jfree.util.AbstractBunch.java Source code

Java tutorial

Introduction

Here is the source code for com.l2jfree.util.AbstractBunch.java

Source

/*
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later
 * version.
 * 
 * This program 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 General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program. If not, see <http://www.gnu.org/licenses/>.
 */
package com.l2jfree.util;

import java.lang.reflect.Array;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * @author NB4L1
 */
@SuppressWarnings("unchecked")
public abstract class AbstractBunch<E> implements Bunch<E> {
    protected static final Log _log = LogFactory.getLog(AbstractBunch.class);

    @Override
    public boolean isEmpty() {
        return size() == 0;
    }

    @Override
    public Bunch<E> addAll(Iterable<? extends E> c) {
        if (c != null)
            for (E e : c)
                add(e);

        return this;
    }

    @Override
    public Bunch<E> addAll(E[] array) {
        if (array != null)
            for (E e : array)
                add(e);

        return this;
    }

    @Override
    public Object[] moveToArray() {
        return moveToArray(new Object[size()]);
    }

    @Override
    public <T> T[] moveToArray(Class<T> clazz) {
        return moveToArray((T[]) Array.newInstance(clazz, size()));
    }
}