Java List Contain contains(List lsttor, Object val)

Here you can find the source of contains(List lsttor, Object val)

Description

contains

License

Apache License

Declaration

public static boolean contains(List lsttor, Object val) 

Method Source Code

//package com.java2s;
/**// w ww . j  av  a2 s  . c  o m
 * Copyright 2016 William Van Woensel
    
   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.
 * 
 * 
 * @author wvw
 * 
 */

import java.util.List;

public class Main {
    public static boolean contains(List lsttor, Object val) {
        for (int i = 0; i < lsttor.size(); i++)
            if (lsttor.get(i).equals(val))
                return true;

        return false;
    }

    public static boolean equals(List lst1, List lst2) {
        if (lst1.size() != lst2.size())
            return false;

        for (Object obj1 : lst1) {

            boolean match = false;
            for (Object obj2 : lst2) {

                if (obj1.equals(obj2)) {
                    match = true;

                    break;
                }
            }

            if (!match)
                return false;
        }

        return true;
    }
}

Related

  1. contains(int[] list, int x)
  2. contains(int[] match, List container)
  3. contains(int[] subject, int[][] list)
  4. contains(List aList, Object anObj)
  5. contains(List list, Object obj)
  6. contains(List list, Object element, int begin, int end)
  7. contains(List objects, Object object)
  8. contains(List listOfArrays, A[] array)
  9. contains(List list, int[] arr)