Java Array Last Index Of lastIndexOfInsensitive(String o, String[] vals)

Here you can find the source of lastIndexOfInsensitive(String o, String[] vals)

Description

last Index Of Insensitive

License

Open Source License

Declaration

public static int lastIndexOfInsensitive(String o, String[] vals) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * The MIT License (MIT)// w w  w  . ja  va 2s  . c o  m
 * 
 * Copyright (c) 2016 Dalibor Drgo? <emptychannelmc@gmail.com>
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 ******************************************************************************/

public class Main {
    public static int lastIndexOfInsensitive(String o, String[] vals) {
        return lastIndexOfInsensitive(o, vals, 0);
    }

    public static int lastIndexOfInsensitive(String o, String[] vals, int i) {
        if (vals == null || vals.length == 0) {
            return -1;
        }
        if (i >= vals.length) {
            i = vals.length - 1;
        }
        if (o == null) {
            for (; i >= 0; i--) {
                if (vals[i] == null) {
                    return i;
                }
            }
        } else {
            for (; i >= 0; i--) {
                if (o.equalsIgnoreCase(vals[i])) {
                    return i;
                }
            }
        }
        return -1;
    }
}

Related

  1. lastIndexOfAny(String str, String[] searchStrs)
  2. lastIndexOfAny(String string, char[] anyOf)
  3. lastIndexOfAnyNoCheck(byte[] values, byte[] array, int index, int length)
  4. lastIndexOfArray(int r[], int rpos, int rend, char d[], int dpos)
  5. lastIndexOfChars(String src, char[] chars, int startIndex, int endIndex)
  6. lastIndexOfNoCheck(byte value, byte[] array, int index, int length)
  7. lastIndexOfNot(byte[] array, int obj)
  8. lastIndexOfRef(T[] ary, int off, int len, T value)
  9. lastIndexOfTrim(byte[] raw, char ch, int pos)