public class OArrays extends Object
Constructor and Description |
---|
OArrays() |
Modifier and Type | Method and Description |
---|---|
static boolean |
contains(int[] iArray,
int iToFind)
Returns true if an arrays contains a value, otherwise false
|
static <T> boolean |
contains(T[] iArray,
T iToFind)
Returns true if an arrays contains a value, otherwise false
|
static int[] |
copyOf(int[] iSource,
int iNewSize) |
static <T> T[] |
copyOf(T[] iSource,
int iNewSize) |
static <T,U> T[] |
copyOf(U[] iSource,
int iNewSize,
Class<? extends T[]> iNewType) |
static byte[] |
copyOfRange(byte[] iSource,
int iBegin,
int iEnd) |
static <S> S[] |
copyOfRange(S[] iSource,
int iBegin,
int iEnd) |
static <D,S> D[] |
copyOfRange(S[] iSource,
int iBegin,
int iEnd,
Class<? extends D[]> iClass) |
static int |
hash(Object[] iArray) |
public static <T> T[] copyOf(T[] iSource, int iNewSize)
public static <T,U> T[] copyOf(U[] iSource, int iNewSize, Class<? extends T[]> iNewType)
public static <S> S[] copyOfRange(S[] iSource, int iBegin, int iEnd)
public static <D,S> D[] copyOfRange(S[] iSource, int iBegin, int iEnd, Class<? extends D[]> iClass)
public static byte[] copyOfRange(byte[] iSource, int iBegin, int iEnd)
public static int[] copyOf(int[] iSource, int iNewSize)
public static boolean contains(int[] iArray, int iToFind)
public static <T> boolean contains(T[] iArray, T iToFind)
public static int hash(Object[] iArray)
Copyright © 2009–2020 OrientDB. All rights reserved.