Java Array Contain arrayContains(Object[] array, Object object)

Here you can find the source of arrayContains(Object[] array, Object object)

Description

array Contains

License

Apache License

Declaration

public static boolean arrayContains(Object[] array, Object object) 

Method Source Code

//package com.java2s;
/*/*from w  w  w.  j a  v  a  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.
 */

public class Main {
    public static boolean arrayContains(Object[] array, Object object) {

        for (int i = 0; i < array.length; i++) {

            try {
                if (array[i] == object || array[i].equals(object)) {
                    return true;
                }
            } catch (Exception e) {
                // Means not the same, keep looking
            }
        }

        return false;
    }
}

Related

  1. arrayContains(Object[] a, Object ob)
  2. arrayContains(Object[] array, Object el)
  3. arrayContains(Object[] array, Object el)
  4. arrayContains(Object[] array, Object element)
  5. ArrayContains(Object[] array, Object obj)
  6. arrayContains(Object[] element, Object[][] array)
  7. arrayContains(Object[] haystack, Object needle)
  8. arrayContains(String[] arr, String sg, boolean ignoreCase)
  9. arrayContains(String[] array, String str)