Java List Contain containsUsingToArray(List list, Integer value)

Here you can find the source of containsUsingToArray(List list, Integer value)

Description

contains Using To Array

License

Apache License

Declaration

public static boolean containsUsingToArray(List<Integer> list, Integer value) 

Method Source Code

//package com.java2s;
/*//  w w w . j a  v a2 s .co  m
   Copyright (c) 2012 LinkedIn Corp.
    
   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.List;

public class Main {
    public static boolean containsUsingToArray(List<Integer> list, Integer value) {
        boolean found = false;
        Object[] a = list.toArray();
        for (int i = 0; i < a.length; ++i) {
            if (a[i].equals(value))
                found = true;
        }
        return found;
    }
}

Related

  1. containsStr(List list, String str)
  2. containsStringStartingWith(List list, String prefix)
  3. containsSubsequence(List a, List b)
  4. containsType(List list, Class type)
  5. containsUnorderedSequence(List a, List b)
  6. containsWhitespace(List elements)
  7. firstFunnyString(List words, String containedTest)
  8. getListValue(Object container, int index)
  9. identityContains(Object o, List list)