Java List IndexOf indexOf(List list, T string, int beginIndex)

Here you can find the source of indexOf(List list, T string, int beginIndex)

Description

A List#indexOf(Object) which begins the search at a particular index.

License

Open Source License

Declaration

public static <T> int indexOf(List<T> list, T string, int beginIndex) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2011 Google Inc. All Rights Reserved.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * 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./*ww w  . ja v a2 s  .c  o  m*/
 *******************************************************************************/

import java.util.List;

public class Main {
    /**
     * A {@link List#indexOf(Object)} which begins the search at a particular
     * index.
     */
    public static <T> int indexOf(List<T> list, T string, int beginIndex) {
        for (int i = beginIndex; i < list.size(); i++) {
            if (string.equals(list.get(i))) {
                return i;
            }
        }

        return -1;
    }
}

Related

  1. indexOf(int start, List datas, T target)
  2. indexOf(List list, Object element, int begin, int end)
  3. indexOf(List data, List token)
  4. indexOf(List source, List target)
  5. indexOf(List lines, String... conditions)
  6. indexOf(Object o, Collection list)
  7. indexOfFactory(List factories, Class classInstance)
  8. indexOfId(List aList, Object anObj)
  9. indexOfIdentical(List list, Object value)