Create a Statically Initialized List of Objects

Create a Statically Initialized List of Objects

A group of objects can be organized into arrays or collections. Arrays are nice because you can statically initialize them, but collections have far more functionality. Using this tip you can have your array and iterate it too!

In your class, create your statically initialized array as always:

    public static String [] primeColorsArray = { "red", "blue", "green" };

And on the next line create a List, using the Arrays.asList() method to convert the static array.

    public static List primeColorsList = Arrays.asList(primeColorsArray);

Voila!

The result is more concise and elegant that calling the List.add() method over and over again.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular