Java com.google.common.collect ObjectArrays fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect ObjectArrays fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect ObjectArrays.

The text is from its open source code.

Method

T[]concat(@Nullable T element, T[] array)
Returns a new array that prepends element to array .
T[]concat(T[] array, @Nullable T element)
Returns a new array that appends element to array .
T[]concat(T[] first, T[] second, Class type)
Returns a new array that contains the concatenated contents of two arrays.
T[]newArray(Class type, int length)
Returns a new array of the given length with the specified component type.
T[]newArray(T[] reference, int length)
Returns a new array of the given length with the same type as a reference array.