fr.openwide.core.commons.util.CloneUtils.java Source code

Java tutorial

Introduction

Here is the source code for fr.openwide.core.commons.util.CloneUtils.java

Source

/*
 * Copyright (C) 2009-2010 Open Wide
 * Contact: contact@openwide.fr
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package fr.openwide.core.commons.util;

import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;

import org.apache.commons.lang3.ArrayUtils;

import fr.openwide.core.commons.util.clone.ICloneable;

/**
 * <p>Utilitaires utiliss pour cloner les objets Java.</p>
 * 
 * @author Open Wide
 */
public final class CloneUtils {

    /**
     * Clne une date.
     * Cette mthode est null safe.
     * 
     * @param date  clner
     * @return clne de la date passe en paramtre
     */
    public static Date clone(Date date) {
        if (date == null) {
            return null;
        } else {
            return (Date) date.clone();
        }
    }

    /**
     * Clne un calendar.
     * Cette mthode est null safe.
     * 
     * @param calendar  clner
     * @return clne du calendar pass en paramtre
     */
    public static Calendar clone(Calendar calendar) {
        if (calendar == null) {
            return null;
        } else {
            return (Calendar) calendar.clone();
        }
    }

    /**
     * Clne un ICloneable<T>.
     * Cette mthode est null safe.
     * 
     * @param cloneable  clner
     * @return clne du cloneable pass en paramtre
     */
    public static <T> T clone(ICloneable<T> cloneable) {
        if (cloneable == null) {
            return null;
        } else {
            return (T) cloneable.clone();
        }
    }

    /**
     * Clne un tableau d'objets
     * 
     * @param <T> classe des objets stocks dans le tableau
     * @param array tableau
     * @return clne du tableau
     */
    public static <T extends Object> T[] clone(T[] array) {
        return ArrayUtils.clone(array);
    }

    /**
     * Clne une liste d'objets
     * 
     * @param <T> classe des objets stocks dans le tableau
     * @param list liste
     * @return clne de la liste
     */
    public static <T extends Object> List<T> clone(List<T> list) {
        if (list == null) {
            return null;
        } else {
            return new ArrayList<T>(list);
        }
    }

    /**
     * Constructeur priv utilis pour empcher une instanciation accidentelle de l'objet.
     */
    private CloneUtils() {
    }

}