Optimize binding types memory usage
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / LazyCollections.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.util;
9
10 import java.util.ArrayList;
11 import java.util.Collections;
12 import java.util.List;
13
14 /**
15  * Utility methods for lazily instantiated collections. These are useful for
16  * situations when we start off with an empty collection (where Collections.empty()
17  * can be reused), but need to add more things.
18  */
19 public final class LazyCollections {
20
21     /**
22      * Add an element to a list, potentially transforming the list.
23      *
24      * @param list Current list
25      * @param obj Object that needs to be added
26      * @return new list
27      */
28     public static <T> List<T> lazyAdd(final List<T> list, final T obj) {
29         final List<T> ret;
30
31         switch (list.size()) {
32         case 0:
33             return Collections.singletonList(obj);
34         case 1:
35             ret = new ArrayList<>();
36             ret.addAll(list);
37             break;
38         default:
39             ret = list;
40         }
41
42         ret.add(obj);
43         return ret;
44     }
45
46 }