Java List Compare compareLists(Class type, List list1, List list2)

Here you can find the source of compareLists(Class type, List list1, List list2)

Description

compare Lists

License

Apache License

Declaration

public static <T> boolean compareLists(Class<T> type, List<T> list1, List<T> list2) 

Method Source Code

//package com.java2s;
/*/* w w w  .  ja  va  2 s .  co  m*/
   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.
 */

import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

public class Main {
    public static <T> boolean compareLists(Class<T> type, List<T> list1, List<T> list2) {
        List<T> tmp = new LinkedList<T>();
        tmp.addAll(list2);
        for (T element : list1) {
            boolean found = false;
            Iterator<T> it = tmp.iterator();
            while (it.hasNext()) {
                T e = it.next();
                if (e.equals(element)) {
                    it.remove();
                    found = true;
                    continue;
                }
            }
            if (!found) {
                return false;
            }
        }
        return tmp.size() == 0;
    }
}

Related

  1. compareByList(List list, T a, T b)
  2. compareFileLists(List expected, List gotten)
  3. compareIncarnations(List e1, List e2)
  4. compareList(List listA, List listB)
  5. compareList(Object eObj, Object rObj)
  6. compareLists(final List list1, final List list2)
  7. compareLists(List strings1, List strings2, boolean ignoreCase)
  8. compareLists(List l1, List l2)
  9. compareLists(List list, List> listOfLists)