Package owl.util
Class ArraysSupport
- java.lang.Object
-
- owl.util.ArraysSupport
-
public final class ArraysSupport extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAX_ARRAY_LENGTH
The maximum length of array to allocate (unless necessary).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
newLength(int oldLength, int minGrowth, int prefGrowth)
-
-
-
Field Detail
-
MAX_ARRAY_LENGTH
public static final int MAX_ARRAY_LENGTH
The maximum length of array to allocate (unless necessary). Some VMs reserve some header words in an array. Attempts to allocate larger arrays may result inOutOfMemoryError: Requested array size exceeds VM limit
- See Also:
- Constant Field Values
-
-