Example usage for org.apache.commons.lang ArrayUtils lastIndexOf

List of usage examples for org.apache.commons.lang ArrayUtils lastIndexOf

Introduction

In this page you can find the example usage for org.apache.commons.lang ArrayUtils lastIndexOf.

Prototype

public static int lastIndexOf(boolean[] array, boolean valueToFind) 

Source Link

Document

Finds the last index of the given value within the array.

Usage

From source file:wzw.lang.ArraySupport.java

public static int lastIndexOf(Object[] array, Object obj) {
    return ArrayUtils.lastIndexOf(array, obj);
}