public class ArrayUtil extends Object
| 限定符和类型 | 字段和说明 |
|---|---|
static boolean[] |
EMPTY_BOOLEAN_ARRAY |
static Boolean[] |
EMPTY_BOOLEAN_OBJECT_ARRAY |
static byte[] |
EMPTY_BYTE_ARRAY |
static Byte[] |
EMPTY_BYTE_OBJECT_ARRAY |
static char[] |
EMPTY_CHAR_ARRAY |
static Character[] |
EMPTY_CHARACTER_OBJECT_ARRAY |
static Class[] |
EMPTY_CLASS_ARRAY |
static double[] |
EMPTY_DOUBLE_ARRAY |
static Double[] |
EMPTY_DOUBLE_OBJECT_ARRAY |
static float[] |
EMPTY_FLOAT_ARRAY |
static Float[] |
EMPTY_FLOAT_OBJECT_ARRAY |
static int[] |
EMPTY_INT_ARRAY |
static Integer[] |
EMPTY_INTEGER_OBJECT_ARRAY |
static long[] |
EMPTY_LONG_ARRAY |
static Long[] |
EMPTY_LONG_OBJECT_ARRAY |
static Object[] |
EMPTY_OBJECT_ARRAY |
static short[] |
EMPTY_SHORT_ARRAY |
static Short[] |
EMPTY_SHORT_OBJECT_ARRAY |
static String[] |
EMPTY_STRING_ARRAY |
| 构造器和说明 |
|---|
ArrayUtil() |
| 限定符和类型 | 方法和说明 |
|---|---|
static boolean[] |
clone(boolean[] array) |
static byte[] |
clone(byte[] array) |
static char[] |
clone(char[] array) |
static double[] |
clone(double[] array) |
static float[] |
clone(float[] array) |
static int[] |
clone(int[] array) |
static long[] |
clone(long[] array) |
static Object[] |
clone(Object[] array) |
static short[] |
clone(short[] array) |
static boolean |
contains(boolean[] array,
boolean booleanToFind) |
static boolean |
contains(boolean[] array,
boolean[] arrayToFind) |
static boolean |
contains(byte[] array,
byte byteToFind) |
static boolean |
contains(byte[] array,
byte[] arrayToFind) |
static boolean |
contains(char[] array,
char charToFind) |
static boolean |
contains(char[] array,
char[] arrayToFind) |
static boolean |
contains(double[] array,
double doubleToFind) |
static boolean |
contains(double[] array,
double[] arrayToFind) |
static boolean |
contains(double[] array,
double[] arrayToFind,
double tolerance) |
static boolean |
contains(double[] array,
double doubleToFind,
double tolerance) |
static boolean |
contains(float[] array,
float floatToFind) |
static boolean |
contains(float[] array,
float[] arrayToFind) |
static boolean |
contains(float[] array,
float[] arrayToFind,
float tolerance) |
static boolean |
contains(float[] array,
float floatToFind,
float tolerance) |
static boolean |
contains(int[] array,
int intToFind) |
static boolean |
contains(int[] array,
int[] arrayToFind) |
static boolean |
contains(long[] array,
long longToFind) |
static boolean |
contains(long[] array,
long[] arrayToFind) |
static boolean |
contains(Object[] array,
Object objectToFind) |
static boolean |
contains(Object[] array,
Object[] arrayToFind) |
static boolean |
contains(short[] array,
short shortToFind) |
static boolean |
contains(short[] array,
short[] arrayToFind) |
static boolean[] |
defaultIfEmpty(boolean[] array) |
static boolean[] |
defaultIfEmpty(boolean[] array,
boolean[] defaultArray) |
static byte[] |
defaultIfEmpty(byte[] array) |
static byte[] |
defaultIfEmpty(byte[] array,
byte[] defaultArray) |
static char[] |
defaultIfEmpty(char[] array) |
static char[] |
defaultIfEmpty(char[] array,
char[] defaultArray) |
static double[] |
defaultIfEmpty(double[] array) |
static double[] |
defaultIfEmpty(double[] array,
double[] defaultArray) |
static float[] |
defaultIfEmpty(float[] array) |
static float[] |
defaultIfEmpty(float[] array,
float[] defaultArray) |
static int[] |
defaultIfEmpty(int[] array) |
static int[] |
defaultIfEmpty(int[] array,
int[] defaultArray) |
static long[] |
defaultIfEmpty(long[] array) |
static long[] |
defaultIfEmpty(long[] array,
long[] defaultArray) |
static Object[] |
defaultIfEmpty(Object[] array) |
static Object[] |
defaultIfEmpty(Object[] array,
Class defaultComponentType) |
static Object[] |
defaultIfEmpty(Object[] array,
Object[] defaultArray) |
static short[] |
defaultIfEmpty(short[] array) |
static short[] |
defaultIfEmpty(short[] array,
short[] defaultArray) |
static boolean[] |
defaultIfNull(boolean[] array) |
static boolean[] |
defaultIfNull(boolean[] array,
boolean[] defaultArray) |
static byte[] |
defaultIfNull(byte[] array) |
static byte[] |
defaultIfNull(byte[] array,
byte[] defaultArray) |
static char[] |
defaultIfNull(char[] array) |
static char[] |
defaultIfNull(char[] array,
char[] defaultArray) |
static double[] |
defaultIfNull(double[] array) |
static double[] |
defaultIfNull(double[] array,
double[] defaultArray) |
static float[] |
defaultIfNull(float[] array) |
static float[] |
defaultIfNull(float[] array,
float[] defaultArray) |
static int[] |
defaultIfNull(int[] array) |
static int[] |
defaultIfNull(int[] array,
int[] defaultArray) |
static long[] |
defaultIfNull(long[] array) |
static long[] |
defaultIfNull(long[] array,
long[] defaultArray) |
static Object[] |
defaultIfNull(Object[] array) |
static Object[] |
defaultIfNull(Object[] array,
Class defaultComponentType) |
static Object[] |
defaultIfNull(Object[] array,
Object[] defaultArray) |
static short[] |
defaultIfNull(short[] array) |
static short[] |
defaultIfNull(short[] array,
short[] defaultArray) |
static boolean |
equals(Object array1,
Object array2) |
static int |
hashCode(Object array) |
static int |
indexOf(boolean[] array,
boolean booleanToFind) |
static int |
indexOf(boolean[] array,
boolean[] arrayToFind) |
static int |
indexOf(boolean[] array,
boolean[] arrayToFind,
int startIndex) |
static int |
indexOf(boolean[] array,
boolean booleanToFind,
int startIndex) |
static int |
indexOf(byte[] array,
byte byteToFind) |
static int |
indexOf(byte[] array,
byte[] arrayToFind) |
static int |
indexOf(byte[] array,
byte[] arrayToFind,
int startIndex) |
static int |
indexOf(byte[] array,
byte byteToFind,
int startIndex) |
static int |
indexOf(char[] array,
char charToFind) |
static int |
indexOf(char[] array,
char[] arrayToFind) |
static int |
indexOf(char[] array,
char[] arrayToFind,
int startIndex) |
static int |
indexOf(char[] array,
char charToFind,
int startIndex) |
static int |
indexOf(double[] array,
double doubleToFind) |
static int |
indexOf(double[] array,
double[] arrayToFind) |
static int |
indexOf(double[] array,
double[] arrayToFind,
double tolerance) |
static int |
indexOf(double[] array,
double[] arrayToFind,
int startIndex) |
static int |
indexOf(double[] array,
double[] arrayToFind,
int startIndex,
double tolerance) |
static int |
indexOf(double[] array,
double doubleToFind,
double tolerance) |
static int |
indexOf(double[] array,
double doubleToFind,
int startIndex) |
static int |
indexOf(double[] array,
double doubleToFind,
int startIndex,
double tolerance) |
static int |
indexOf(float[] array,
float floatToFind) |
static int |
indexOf(float[] array,
float[] arrayToFind) |
static int |
indexOf(float[] array,
float[] arrayToFind,
float tolerance) |
static int |
indexOf(float[] array,
float[] arrayToFind,
int startIndex) |
static int |
indexOf(float[] array,
float[] arrayToFind,
int startIndex,
float tolerance) |
static int |
indexOf(float[] array,
float floatToFind,
float tolerance) |
static int |
indexOf(float[] array,
float floatToFind,
int startIndex) |
static int |
indexOf(float[] array,
float floatToFind,
int startIndex,
float tolerance) |
static int |
indexOf(int[] array,
int intToFind) |
static int |
indexOf(int[] array,
int[] arrayToFind) |
static int |
indexOf(int[] array,
int[] arrayToFind,
int startIndex) |
static int |
indexOf(int[] array,
int intToFind,
int startIndex) |
static int |
indexOf(long[] array,
long longToFind) |
static int |
indexOf(long[] array,
long[] arrayToFind) |
static int |
indexOf(long[] array,
long[] arrayToFind,
int startIndex) |
static int |
indexOf(long[] array,
long longToFind,
int startIndex) |
static int |
indexOf(Object[] array,
Object objectToFind) |
static int |
indexOf(Object[] array,
Object[] arrayToFind) |
static int |
indexOf(Object[] array,
Object[] arrayToFind,
int startIndex) |
static int |
indexOf(Object[] array,
Object objectToFind,
int startIndex) |
static int |
indexOf(short[] array,
short shortToFind) |
static int |
indexOf(short[] array,
short[] arrayToFind) |
static int |
indexOf(short[] array,
short[] arrayToFind,
int startIndex) |
static int |
indexOf(short[] array,
short shortToFind,
int startIndex) |
static boolean |
isEmpty(boolean[] array) |
static boolean |
isEmpty(byte[] array) |
static boolean |
isEmpty(char[] array) |
static boolean |
isEmpty(double[] array) |
static boolean |
isEmpty(float[] array) |
static boolean |
isEmpty(int[] array) |
static boolean |
isEmpty(long[] array) |
static boolean |
isEmpty(Object[] array) |
static boolean |
isEmpty(short[] array) |
static boolean |
isNotEmpty(boolean[] array) |
static boolean |
isNotEmpty(byte[] array) |
static boolean |
isNotEmpty(char[] array) |
static boolean |
isNotEmpty(double[] array) |
static boolean |
isNotEmpty(float[] array) |
static boolean |
isNotEmpty(int[] array) |
static boolean |
isNotEmpty(long[] array) |
static boolean |
isNotEmpty(Object[] array) |
static boolean |
isNotEmpty(short[] array) |
static boolean |
isSameLength(boolean[] array1,
boolean[] array2) |
static boolean |
isSameLength(byte[] array1,
byte[] array2) |
static boolean |
isSameLength(char[] array1,
char[] array2) |
static boolean |
isSameLength(double[] array1,
double[] array2) |
static boolean |
isSameLength(float[] array1,
float[] array2) |
static boolean |
isSameLength(int[] array1,
int[] array2) |
static boolean |
isSameLength(long[] array1,
long[] array2) |
static boolean |
isSameLength(Object[] array1,
Object[] array2) |
static boolean |
isSameLength(short[] array1,
short[] array2) |
static int |
lastIndexOf(boolean[] array,
boolean booleanToFind) |
static int |
lastIndexOf(boolean[] array,
boolean[] arrayToFind) |
static int |
lastIndexOf(boolean[] array,
boolean[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(boolean[] array,
boolean booleanToFind,
int startIndex) |
static int |
lastIndexOf(byte[] array,
byte byteToFind) |
static int |
lastIndexOf(byte[] array,
byte[] arrayToFind) |
static int |
lastIndexOf(byte[] array,
byte[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(byte[] array,
byte byteToFind,
int startIndex) |
static int |
lastIndexOf(char[] array,
char charToFind) |
static int |
lastIndexOf(char[] array,
char[] arrayToFind) |
static int |
lastIndexOf(char[] array,
char[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(char[] array,
char charToFind,
int startIndex) |
static int |
lastIndexOf(double[] array,
double doubleToFind) |
static int |
lastIndexOf(double[] array,
double[] arrayToFind) |
static int |
lastIndexOf(double[] array,
double[] arrayToFind,
double tolerance) |
static int |
lastIndexOf(double[] array,
double[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(double[] array,
double[] arrayToFind,
int startIndex,
double tolerance) |
static int |
lastIndexOf(double[] array,
double doubleToFind,
double tolerance) |
static int |
lastIndexOf(double[] array,
double doubleToFind,
int startIndex) |
static int |
lastIndexOf(double[] array,
double doubleToFind,
int startIndex,
double tolerance) |
static int |
lastIndexOf(float[] array,
float floatToFind) |
static int |
lastIndexOf(float[] array,
float[] arrayToFind) |
static int |
lastIndexOf(float[] array,
float[] arrayToFind,
float tolerance) |
static int |
lastIndexOf(float[] array,
float[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(float[] array,
float[] arrayToFind,
int startIndex,
float tolerance) |
static int |
lastIndexOf(float[] array,
float floatToFind,
float tolerance) |
static int |
lastIndexOf(float[] array,
float floatToFind,
int startIndex) |
static int |
lastIndexOf(float[] array,
float floatToFind,
int startIndex,
float tolerance) |
static int |
lastIndexOf(int[] array,
int intToFind) |
static int |
lastIndexOf(int[] array,
int[] arrayToFind) |
static int |
lastIndexOf(int[] array,
int[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(int[] array,
int intToFind,
int startIndex) |
static int |
lastIndexOf(long[] array,
long longToFind) |
static int |
lastIndexOf(long[] array,
long[] arrayToFind) |
static int |
lastIndexOf(long[] array,
long[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(long[] array,
long longToFind,
int startIndex) |
static int |
lastIndexOf(Object[] array,
Object objectToFind) |
static int |
lastIndexOf(Object[] array,
Object[] arrayToFind) |
static int |
lastIndexOf(Object[] array,
Object[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(Object[] array,
Object objectToFind,
int startIndex) |
static int |
lastIndexOf(short[] array,
short shortToFind) |
static int |
lastIndexOf(short[] array,
short[] arrayToFind) |
static int |
lastIndexOf(short[] array,
short[] arrayToFind,
int startIndex) |
static int |
lastIndexOf(short[] array,
short shortToFind,
int startIndex) |
static void |
reverse(boolean[] array) |
static void |
reverse(byte[] array) |
static void |
reverse(char[] array) |
static void |
reverse(double[] array) |
static void |
reverse(float[] array) |
static void |
reverse(int[] array) |
static void |
reverse(long[] array) |
static void |
reverse(Object[] array) |
static void |
reverse(short[] array) |
static List |
toFixedList(Object[] array) |
static List |
toList(Object array) |
static List |
toList(Object array,
List list) |
static Map |
toMap(Object[] array) |
static Map |
toMap(Object[] array,
Map map) |
static String |
toString(Object array) |
static String |
toString(Object array,
String nullArrayStr) |
static String |
toString(Object array,
String nullArrayStr,
String nullElementStr) |
public static final Object[] EMPTY_OBJECT_ARRAY
public static final Class[] EMPTY_CLASS_ARRAY
public static final String[] EMPTY_STRING_ARRAY
public static final long[] EMPTY_LONG_ARRAY
public static final Long[] EMPTY_LONG_OBJECT_ARRAY
public static final int[] EMPTY_INT_ARRAY
public static final Integer[] EMPTY_INTEGER_OBJECT_ARRAY
public static final short[] EMPTY_SHORT_ARRAY
public static final Short[] EMPTY_SHORT_OBJECT_ARRAY
public static final byte[] EMPTY_BYTE_ARRAY
public static final Byte[] EMPTY_BYTE_OBJECT_ARRAY
public static final double[] EMPTY_DOUBLE_ARRAY
public static final Double[] EMPTY_DOUBLE_OBJECT_ARRAY
public static final float[] EMPTY_FLOAT_ARRAY
public static final Float[] EMPTY_FLOAT_OBJECT_ARRAY
public static final boolean[] EMPTY_BOOLEAN_ARRAY
public static final Boolean[] EMPTY_BOOLEAN_OBJECT_ARRAY
public static final char[] EMPTY_CHAR_ARRAY
public static final Character[] EMPTY_CHARACTER_OBJECT_ARRAY
public static boolean isEmpty(Object[] array)
public static boolean isEmpty(long[] array)
public static boolean isEmpty(int[] array)
public static boolean isEmpty(short[] array)
public static boolean isEmpty(byte[] array)
public static boolean isEmpty(double[] array)
public static boolean isEmpty(float[] array)
public static boolean isEmpty(boolean[] array)
public static boolean isEmpty(char[] array)
public static boolean isNotEmpty(Object[] array)
public static boolean isNotEmpty(long[] array)
public static boolean isNotEmpty(int[] array)
public static boolean isNotEmpty(short[] array)
public static boolean isNotEmpty(byte[] array)
public static boolean isNotEmpty(double[] array)
public static boolean isNotEmpty(float[] array)
public static boolean isNotEmpty(boolean[] array)
public static boolean isNotEmpty(char[] array)
public static long[] defaultIfNull(long[] array)
public static int[] defaultIfNull(int[] array)
public static short[] defaultIfNull(short[] array)
public static byte[] defaultIfNull(byte[] array)
public static double[] defaultIfNull(double[] array)
public static float[] defaultIfNull(float[] array)
public static boolean[] defaultIfNull(boolean[] array)
public static char[] defaultIfNull(char[] array)
public static long[] defaultIfNull(long[] array,
long[] defaultArray)
public static int[] defaultIfNull(int[] array,
int[] defaultArray)
public static short[] defaultIfNull(short[] array,
short[] defaultArray)
public static byte[] defaultIfNull(byte[] array,
byte[] defaultArray)
public static double[] defaultIfNull(double[] array,
double[] defaultArray)
public static float[] defaultIfNull(float[] array,
float[] defaultArray)
public static boolean[] defaultIfNull(boolean[] array,
boolean[] defaultArray)
public static char[] defaultIfNull(char[] array,
char[] defaultArray)
public static long[] defaultIfEmpty(long[] array)
public static int[] defaultIfEmpty(int[] array)
public static short[] defaultIfEmpty(short[] array)
public static byte[] defaultIfEmpty(byte[] array)
public static double[] defaultIfEmpty(double[] array)
public static float[] defaultIfEmpty(float[] array)
public static boolean[] defaultIfEmpty(boolean[] array)
public static char[] defaultIfEmpty(char[] array)
public static long[] defaultIfEmpty(long[] array,
long[] defaultArray)
public static int[] defaultIfEmpty(int[] array,
int[] defaultArray)
public static short[] defaultIfEmpty(short[] array,
short[] defaultArray)
public static byte[] defaultIfEmpty(byte[] array,
byte[] defaultArray)
public static double[] defaultIfEmpty(double[] array,
double[] defaultArray)
public static float[] defaultIfEmpty(float[] array,
float[] defaultArray)
public static boolean[] defaultIfEmpty(boolean[] array,
boolean[] defaultArray)
public static char[] defaultIfEmpty(char[] array,
char[] defaultArray)
public static int hashCode(Object array)
public static long[] clone(long[] array)
public static int[] clone(int[] array)
public static short[] clone(short[] array)
public static byte[] clone(byte[] array)
public static double[] clone(double[] array)
public static float[] clone(float[] array)
public static boolean[] clone(boolean[] array)
public static char[] clone(char[] array)
public static boolean isSameLength(long[] array1,
long[] array2)
public static boolean isSameLength(int[] array1,
int[] array2)
public static boolean isSameLength(short[] array1,
short[] array2)
public static boolean isSameLength(byte[] array1,
byte[] array2)
public static boolean isSameLength(double[] array1,
double[] array2)
public static boolean isSameLength(float[] array1,
float[] array2)
public static boolean isSameLength(boolean[] array1,
boolean[] array2)
public static boolean isSameLength(char[] array1,
char[] array2)
public static void reverse(Object[] array)
public static void reverse(long[] array)
public static void reverse(int[] array)
public static void reverse(short[] array)
public static void reverse(byte[] array)
public static void reverse(double[] array)
public static void reverse(float[] array)
public static void reverse(boolean[] array)
public static void reverse(char[] array)
public static int indexOf(long[] array,
long longToFind)
public static int indexOf(long[] array,
long[] arrayToFind)
public static int indexOf(long[] array,
long longToFind,
int startIndex)
public static int indexOf(long[] array,
long[] arrayToFind,
int startIndex)
public static int lastIndexOf(long[] array,
long longToFind)
public static int lastIndexOf(long[] array,
long[] arrayToFind)
public static int lastIndexOf(long[] array,
long longToFind,
int startIndex)
public static int lastIndexOf(long[] array,
long[] arrayToFind,
int startIndex)
public static boolean contains(long[] array,
long longToFind)
public static boolean contains(long[] array,
long[] arrayToFind)
public static int indexOf(int[] array,
int intToFind)
public static int indexOf(int[] array,
int[] arrayToFind)
public static int indexOf(int[] array,
int intToFind,
int startIndex)
public static int indexOf(int[] array,
int[] arrayToFind,
int startIndex)
public static int lastIndexOf(int[] array,
int intToFind)
public static int lastIndexOf(int[] array,
int[] arrayToFind)
public static int lastIndexOf(int[] array,
int intToFind,
int startIndex)
public static int lastIndexOf(int[] array,
int[] arrayToFind,
int startIndex)
public static boolean contains(int[] array,
int intToFind)
public static boolean contains(int[] array,
int[] arrayToFind)
public static int indexOf(short[] array,
short shortToFind)
public static int indexOf(short[] array,
short[] arrayToFind)
public static int indexOf(short[] array,
short shortToFind,
int startIndex)
public static int indexOf(short[] array,
short[] arrayToFind,
int startIndex)
public static int lastIndexOf(short[] array,
short shortToFind)
public static int lastIndexOf(short[] array,
short[] arrayToFind)
public static int lastIndexOf(short[] array,
short shortToFind,
int startIndex)
public static int lastIndexOf(short[] array,
short[] arrayToFind,
int startIndex)
public static boolean contains(short[] array,
short shortToFind)
public static boolean contains(short[] array,
short[] arrayToFind)
public static int indexOf(byte[] array,
byte byteToFind)
public static int indexOf(byte[] array,
byte[] arrayToFind)
public static int indexOf(byte[] array,
byte byteToFind,
int startIndex)
public static int indexOf(byte[] array,
byte[] arrayToFind,
int startIndex)
public static int lastIndexOf(byte[] array,
byte byteToFind)
public static int lastIndexOf(byte[] array,
byte[] arrayToFind)
public static int lastIndexOf(byte[] array,
byte byteToFind,
int startIndex)
public static int lastIndexOf(byte[] array,
byte[] arrayToFind,
int startIndex)
public static boolean contains(byte[] array,
byte byteToFind)
public static boolean contains(byte[] array,
byte[] arrayToFind)
public static int indexOf(double[] array,
double doubleToFind)
public static int indexOf(double[] array,
double doubleToFind,
double tolerance)
public static int indexOf(double[] array,
double[] arrayToFind)
public static int indexOf(double[] array,
double[] arrayToFind,
double tolerance)
public static int indexOf(double[] array,
double doubleToFind,
int startIndex)
public static int indexOf(double[] array,
double doubleToFind,
int startIndex,
double tolerance)
public static int indexOf(double[] array,
double[] arrayToFind,
int startIndex)
public static int indexOf(double[] array,
double[] arrayToFind,
int startIndex,
double tolerance)
public static int lastIndexOf(double[] array,
double doubleToFind)
public static int lastIndexOf(double[] array,
double doubleToFind,
double tolerance)
public static int lastIndexOf(double[] array,
double[] arrayToFind)
public static int lastIndexOf(double[] array,
double[] arrayToFind,
double tolerance)
public static int lastIndexOf(double[] array,
double doubleToFind,
int startIndex)
public static int lastIndexOf(double[] array,
double doubleToFind,
int startIndex,
double tolerance)
public static int lastIndexOf(double[] array,
double[] arrayToFind,
int startIndex)
public static int lastIndexOf(double[] array,
double[] arrayToFind,
int startIndex,
double tolerance)
public static boolean contains(double[] array,
double doubleToFind)
public static boolean contains(double[] array,
double doubleToFind,
double tolerance)
public static boolean contains(double[] array,
double[] arrayToFind)
public static boolean contains(double[] array,
double[] arrayToFind,
double tolerance)
public static int indexOf(float[] array,
float floatToFind)
public static int indexOf(float[] array,
float floatToFind,
float tolerance)
public static int indexOf(float[] array,
float[] arrayToFind)
public static int indexOf(float[] array,
float[] arrayToFind,
float tolerance)
public static int indexOf(float[] array,
float floatToFind,
int startIndex)
public static int indexOf(float[] array,
float floatToFind,
int startIndex,
float tolerance)
public static int indexOf(float[] array,
float[] arrayToFind,
int startIndex)
public static int indexOf(float[] array,
float[] arrayToFind,
int startIndex,
float tolerance)
public static int lastIndexOf(float[] array,
float floatToFind)
public static int lastIndexOf(float[] array,
float floatToFind,
float tolerance)
public static int lastIndexOf(float[] array,
float[] arrayToFind)
public static int lastIndexOf(float[] array,
float[] arrayToFind,
float tolerance)
public static int lastIndexOf(float[] array,
float floatToFind,
int startIndex)
public static int lastIndexOf(float[] array,
float floatToFind,
int startIndex,
float tolerance)
public static int lastIndexOf(float[] array,
float[] arrayToFind,
int startIndex)
public static int lastIndexOf(float[] array,
float[] arrayToFind,
int startIndex,
float tolerance)
public static boolean contains(float[] array,
float floatToFind)
public static boolean contains(float[] array,
float floatToFind,
float tolerance)
public static boolean contains(float[] array,
float[] arrayToFind)
public static boolean contains(float[] array,
float[] arrayToFind,
float tolerance)
public static int indexOf(boolean[] array,
boolean booleanToFind)
public static int indexOf(boolean[] array,
boolean[] arrayToFind)
public static int indexOf(boolean[] array,
boolean booleanToFind,
int startIndex)
public static int indexOf(boolean[] array,
boolean[] arrayToFind,
int startIndex)
public static int lastIndexOf(boolean[] array,
boolean booleanToFind)
public static int lastIndexOf(boolean[] array,
boolean[] arrayToFind)
public static int lastIndexOf(boolean[] array,
boolean booleanToFind,
int startIndex)
public static int lastIndexOf(boolean[] array,
boolean[] arrayToFind,
int startIndex)
public static boolean contains(boolean[] array,
boolean booleanToFind)
public static boolean contains(boolean[] array,
boolean[] arrayToFind)
public static int indexOf(char[] array,
char charToFind)
public static int indexOf(char[] array,
char[] arrayToFind)
public static int indexOf(char[] array,
char charToFind,
int startIndex)
public static int indexOf(char[] array,
char[] arrayToFind,
int startIndex)
public static int lastIndexOf(char[] array,
char charToFind)
public static int lastIndexOf(char[] array,
char[] arrayToFind)
public static int lastIndexOf(char[] array,
char charToFind,
int startIndex)
public static int lastIndexOf(char[] array,
char[] arrayToFind,
int startIndex)
public static boolean contains(char[] array,
char charToFind)
public static boolean contains(char[] array,
char[] arrayToFind)
Copyright © 2019. All rights reserved.