public class ArrayUtils
extends java.lang.Object
| Constructor and Description |
|---|
ArrayUtils() |
| Modifier and Type | Method and Description |
|---|---|
static double |
parseNumber(char[] str,
int pos,
int end) |
static void |
reverse(byte[] data,
int left,
int right) |
static void |
reverse(short[] data,
int left,
int right,
int stride) |
static <T> void |
reverse(T[] data) |
static <T> void |
reverse(T[] data,
int left,
int right) |
static void |
setBox2D(float[] bbox,
float xmin,
float ymin,
float xmax,
float ymax)
Set bbox array to:
xmin, ymin,
xmin, ymax,
xmax, ymax,
xmax, ymin,
|
static boolean |
withinRange(float[] vec,
float min,
float max) |
public static <T> void reverse(T[] data)
public static <T> void reverse(T[] data,
int left,
int right)
public static void reverse(short[] data,
int left,
int right,
int stride)
public static void reverse(byte[] data,
int left,
int right)
public static double parseNumber(char[] str,
int pos,
int end)
public static boolean withinRange(float[] vec,
float min,
float max)
public static void setBox2D(float[] bbox,
float xmin,
float ymin,
float xmax,
float ymax)