Answers for "object to List in java"

5

how to convert object to list in java

//Assuming that your object is a valid List object, you can use: Collections.singletonList(object) -- Returns an immutable list containing only the specified object.

List<Object> list = Collections.singletonList(object);
//If you want it in a specific datatype, use Stream.of(object):

List<String> list = Stream.of(object).map(Object::toString).collect(Collectors.toList())
//Similarly, you can change the method in the map to convert to the datatype you need.
Posted by: Guest on October-06-2021
0

how to add an object to a list of objects in java

import java.util.ArrayList;


ArrayList<typeOfList> list = new ArrayList<typeOfList>();
// Example
ArrayList<String> list = new ArrayList<String>();
Posted by: Guest on November-16-2019

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language