Add items to a number of lists [closed]

Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
0
down vote
favorite
I am working on a rewrite project, where I'm supposed to change the
enhanced for-loop code used in java6 to the newer forEach loop.
Similarly, we have to use Streams API as heavily as possible.
Below is the complete scenario followed by code sample
- Iterate over each element of
List<String> list. - If
Map<String, A>has each as key, take the correspondingAvalue from the Map. Ahas an instance variable,List<B>which is a list of classBobjects.- If
List<B>is null initialize newList<B>and put some value inside it. Else just add a new value to ExistingList<B>.
The complete code for the problem is below:
class A
List<B> values;
class B
//Assume some values
List<String> list = ["val1","val2"];
//Assume some values
Map<String, A> map = "val1" : [A object] , "val2" : [A object] ;
B b = new B();
//Iterate over every value in list
for(String each: list)
//if map has a key with the value inside the list
A a = map.get(each);
//A has a list called "values" of B class objects. If that list is not null or empty add a new B object (b )in our case to the a List else initialze a new List and add the value there.
if(a.values != null && !a.values.isEmpty())
a.values.add(b);
else
List<B> bList = new ArrayList<>();
bList.add(b);
a.values = bList;
java
closed as unclear what you're asking by Emily L., Toby Speight, Ludisposed, Graipher, Dannnno Jan 9 at 16:39
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |Â
up vote
0
down vote
favorite
I am working on a rewrite project, where I'm supposed to change the
enhanced for-loop code used in java6 to the newer forEach loop.
Similarly, we have to use Streams API as heavily as possible.
Below is the complete scenario followed by code sample
- Iterate over each element of
List<String> list. - If
Map<String, A>has each as key, take the correspondingAvalue from the Map. Ahas an instance variable,List<B>which is a list of classBobjects.- If
List<B>is null initialize newList<B>and put some value inside it. Else just add a new value to ExistingList<B>.
The complete code for the problem is below:
class A
List<B> values;
class B
//Assume some values
List<String> list = ["val1","val2"];
//Assume some values
Map<String, A> map = "val1" : [A object] , "val2" : [A object] ;
B b = new B();
//Iterate over every value in list
for(String each: list)
//if map has a key with the value inside the list
A a = map.get(each);
//A has a list called "values" of B class objects. If that list is not null or empty add a new B object (b )in our case to the a List else initialze a new List and add the value there.
if(a.values != null && !a.values.isEmpty())
a.values.add(b);
else
List<B> bList = new ArrayList<>();
bList.add(b);
a.values = bList;
java
closed as unclear what you're asking by Emily L., Toby Speight, Ludisposed, Graipher, Dannnno Jan 9 at 16:39
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
2
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am working on a rewrite project, where I'm supposed to change the
enhanced for-loop code used in java6 to the newer forEach loop.
Similarly, we have to use Streams API as heavily as possible.
Below is the complete scenario followed by code sample
- Iterate over each element of
List<String> list. - If
Map<String, A>has each as key, take the correspondingAvalue from the Map. Ahas an instance variable,List<B>which is a list of classBobjects.- If
List<B>is null initialize newList<B>and put some value inside it. Else just add a new value to ExistingList<B>.
The complete code for the problem is below:
class A
List<B> values;
class B
//Assume some values
List<String> list = ["val1","val2"];
//Assume some values
Map<String, A> map = "val1" : [A object] , "val2" : [A object] ;
B b = new B();
//Iterate over every value in list
for(String each: list)
//if map has a key with the value inside the list
A a = map.get(each);
//A has a list called "values" of B class objects. If that list is not null or empty add a new B object (b )in our case to the a List else initialze a new List and add the value there.
if(a.values != null && !a.values.isEmpty())
a.values.add(b);
else
List<B> bList = new ArrayList<>();
bList.add(b);
a.values = bList;
java
I am working on a rewrite project, where I'm supposed to change the
enhanced for-loop code used in java6 to the newer forEach loop.
Similarly, we have to use Streams API as heavily as possible.
Below is the complete scenario followed by code sample
- Iterate over each element of
List<String> list. - If
Map<String, A>has each as key, take the correspondingAvalue from the Map. Ahas an instance variable,List<B>which is a list of classBobjects.- If
List<B>is null initialize newList<B>and put some value inside it. Else just add a new value to ExistingList<B>.
The complete code for the problem is below:
class A
List<B> values;
class B
//Assume some values
List<String> list = ["val1","val2"];
//Assume some values
Map<String, A> map = "val1" : [A object] , "val2" : [A object] ;
B b = new B();
//Iterate over every value in list
for(String each: list)
//if map has a key with the value inside the list
A a = map.get(each);
//A has a list called "values" of B class objects. If that list is not null or empty add a new B object (b )in our case to the a List else initialze a new List and add the value there.
if(a.values != null && !a.values.isEmpty())
a.values.add(b);
else
List<B> bList = new ArrayList<>();
bList.add(b);
a.values = bList;
java
edited Jan 10 at 11:37
Toby Speight
17.8k13491
17.8k13491
asked Jan 9 at 8:00
utkarsh31
1094
1094
closed as unclear what you're asking by Emily L., Toby Speight, Ludisposed, Graipher, Dannnno Jan 9 at 16:39
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Emily L., Toby Speight, Ludisposed, Graipher, Dannnno Jan 9 at 16:39
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
2
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24
add a comment |Â
1
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
2
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24
1
1
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
2
2
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
Regardless of the java version you use, the business logic, which decides whether the object should be added and in which way, is placed in a non-OO programming paradigm. Instead of walking through other objects private parts, just add an appropriate method in the object itself and call that method:
class A
List<B> values;
public void addB(B newVal)
if(values != null && !values.isEmpty())
values.add(newVal);
else
values = new ArrayList<>();
values.add(newVal);
Then, the actual call of the logic is simple and clean, no matter whether you use a loop or a stream:
list.stream()
.map(key -> map.get(key)) // alternative: map::get
.forEach(a -> a.addB(b));
or
for(String key : list)
map.get(key).add(b);
add a comment |Â
up vote
2
down vote
Non sure what is the purpose to write your code in a java 8 way, please explain this part.
I think you mean using streams.
Anyway, here is an example.
Comparing with your code I introduced a filter that guarantee the key in list exists as a key in the map.
The other part are equivalent.
UPDATE: I added the _map_part that I had forgot previously.
The map can transform your list of string in a new list of different types.
In this case you use the list of string as a filter to get elements from the map. You don't want to operate on the String keys, instead you want to access the map values that are objects of type A.
list.stream()
.filter(key -> (map.containsKey(key)))
.map(key -> (map.get(key)))
.forEach(a ->
if (a.values == null)
a.values = new ArrayList<>();
a.values.add(b);
);
I think the main difference for this approach, compared with the old fashion is that you describe more your intentions, and the purpose of the code emerges much clearly.
But in trivial examples like yours the differences are not so clear and the functional approach seems much complicated.
Not all the case can be converted properly in this way, there are still cases where you whould prefer the loop over the streams.
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
add a comment |Â
up vote
0
down vote
Here is you code example. For simplicity, I have removed the object B with String. basically forEach () loop can be use to achieve the same. However, for more complex logic, I would doing it with conventional java for loops to keep the code readable.
list.stream().forEach(val -> A a = map.get(a); if(a.values != null && !a.values.isEmpty())
a.values.add("new obj");
else
List<String> bList = new ArrayList<>();
bList.add("new obj");
a.values = bList;
);
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Regardless of the java version you use, the business logic, which decides whether the object should be added and in which way, is placed in a non-OO programming paradigm. Instead of walking through other objects private parts, just add an appropriate method in the object itself and call that method:
class A
List<B> values;
public void addB(B newVal)
if(values != null && !values.isEmpty())
values.add(newVal);
else
values = new ArrayList<>();
values.add(newVal);
Then, the actual call of the logic is simple and clean, no matter whether you use a loop or a stream:
list.stream()
.map(key -> map.get(key)) // alternative: map::get
.forEach(a -> a.addB(b));
or
for(String key : list)
map.get(key).add(b);
add a comment |Â
up vote
2
down vote
accepted
Regardless of the java version you use, the business logic, which decides whether the object should be added and in which way, is placed in a non-OO programming paradigm. Instead of walking through other objects private parts, just add an appropriate method in the object itself and call that method:
class A
List<B> values;
public void addB(B newVal)
if(values != null && !values.isEmpty())
values.add(newVal);
else
values = new ArrayList<>();
values.add(newVal);
Then, the actual call of the logic is simple and clean, no matter whether you use a loop or a stream:
list.stream()
.map(key -> map.get(key)) // alternative: map::get
.forEach(a -> a.addB(b));
or
for(String key : list)
map.get(key).add(b);
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Regardless of the java version you use, the business logic, which decides whether the object should be added and in which way, is placed in a non-OO programming paradigm. Instead of walking through other objects private parts, just add an appropriate method in the object itself and call that method:
class A
List<B> values;
public void addB(B newVal)
if(values != null && !values.isEmpty())
values.add(newVal);
else
values = new ArrayList<>();
values.add(newVal);
Then, the actual call of the logic is simple and clean, no matter whether you use a loop or a stream:
list.stream()
.map(key -> map.get(key)) // alternative: map::get
.forEach(a -> a.addB(b));
or
for(String key : list)
map.get(key).add(b);
Regardless of the java version you use, the business logic, which decides whether the object should be added and in which way, is placed in a non-OO programming paradigm. Instead of walking through other objects private parts, just add an appropriate method in the object itself and call that method:
class A
List<B> values;
public void addB(B newVal)
if(values != null && !values.isEmpty())
values.add(newVal);
else
values = new ArrayList<>();
values.add(newVal);
Then, the actual call of the logic is simple and clean, no matter whether you use a loop or a stream:
list.stream()
.map(key -> map.get(key)) // alternative: map::get
.forEach(a -> a.addB(b));
or
for(String key : list)
map.get(key).add(b);
answered Jan 9 at 12:37
mtj
2,684212
2,684212
add a comment |Â
add a comment |Â
up vote
2
down vote
Non sure what is the purpose to write your code in a java 8 way, please explain this part.
I think you mean using streams.
Anyway, here is an example.
Comparing with your code I introduced a filter that guarantee the key in list exists as a key in the map.
The other part are equivalent.
UPDATE: I added the _map_part that I had forgot previously.
The map can transform your list of string in a new list of different types.
In this case you use the list of string as a filter to get elements from the map. You don't want to operate on the String keys, instead you want to access the map values that are objects of type A.
list.stream()
.filter(key -> (map.containsKey(key)))
.map(key -> (map.get(key)))
.forEach(a ->
if (a.values == null)
a.values = new ArrayList<>();
a.values.add(b);
);
I think the main difference for this approach, compared with the old fashion is that you describe more your intentions, and the purpose of the code emerges much clearly.
But in trivial examples like yours the differences are not so clear and the functional approach seems much complicated.
Not all the case can be converted properly in this way, there are still cases where you whould prefer the loop over the streams.
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
add a comment |Â
up vote
2
down vote
Non sure what is the purpose to write your code in a java 8 way, please explain this part.
I think you mean using streams.
Anyway, here is an example.
Comparing with your code I introduced a filter that guarantee the key in list exists as a key in the map.
The other part are equivalent.
UPDATE: I added the _map_part that I had forgot previously.
The map can transform your list of string in a new list of different types.
In this case you use the list of string as a filter to get elements from the map. You don't want to operate on the String keys, instead you want to access the map values that are objects of type A.
list.stream()
.filter(key -> (map.containsKey(key)))
.map(key -> (map.get(key)))
.forEach(a ->
if (a.values == null)
a.values = new ArrayList<>();
a.values.add(b);
);
I think the main difference for this approach, compared with the old fashion is that you describe more your intentions, and the purpose of the code emerges much clearly.
But in trivial examples like yours the differences are not so clear and the functional approach seems much complicated.
Not all the case can be converted properly in this way, there are still cases where you whould prefer the loop over the streams.
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Non sure what is the purpose to write your code in a java 8 way, please explain this part.
I think you mean using streams.
Anyway, here is an example.
Comparing with your code I introduced a filter that guarantee the key in list exists as a key in the map.
The other part are equivalent.
UPDATE: I added the _map_part that I had forgot previously.
The map can transform your list of string in a new list of different types.
In this case you use the list of string as a filter to get elements from the map. You don't want to operate on the String keys, instead you want to access the map values that are objects of type A.
list.stream()
.filter(key -> (map.containsKey(key)))
.map(key -> (map.get(key)))
.forEach(a ->
if (a.values == null)
a.values = new ArrayList<>();
a.values.add(b);
);
I think the main difference for this approach, compared with the old fashion is that you describe more your intentions, and the purpose of the code emerges much clearly.
But in trivial examples like yours the differences are not so clear and the functional approach seems much complicated.
Not all the case can be converted properly in this way, there are still cases where you whould prefer the loop over the streams.
Non sure what is the purpose to write your code in a java 8 way, please explain this part.
I think you mean using streams.
Anyway, here is an example.
Comparing with your code I introduced a filter that guarantee the key in list exists as a key in the map.
The other part are equivalent.
UPDATE: I added the _map_part that I had forgot previously.
The map can transform your list of string in a new list of different types.
In this case you use the list of string as a filter to get elements from the map. You don't want to operate on the String keys, instead you want to access the map values that are objects of type A.
list.stream()
.filter(key -> (map.containsKey(key)))
.map(key -> (map.get(key)))
.forEach(a ->
if (a.values == null)
a.values = new ArrayList<>();
a.values.add(b);
);
I think the main difference for this approach, compared with the old fashion is that you describe more your intentions, and the purpose of the code emerges much clearly.
But in trivial examples like yours the differences are not so clear and the functional approach seems much complicated.
Not all the case can be converted properly in this way, there are still cases where you whould prefer the loop over the streams.
edited Jan 9 at 12:46
answered Jan 9 at 8:51
Mario Santini
1,3911414
1,3911414
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
add a comment |Â
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
Thanks a lot, I agree that for cases like these we should use normal java6 way but my current project is a rewrite and they want all things to be done using streams. Anyways let me verify my scenario once with this code.
â utkarsh31
Jan 9 at 8:55
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
@utkarsh31 I updated my answer as I saw I missed a part.
â Mario Santini
Jan 9 at 12:47
add a comment |Â
up vote
0
down vote
Here is you code example. For simplicity, I have removed the object B with String. basically forEach () loop can be use to achieve the same. However, for more complex logic, I would doing it with conventional java for loops to keep the code readable.
list.stream().forEach(val -> A a = map.get(a); if(a.values != null && !a.values.isEmpty())
a.values.add("new obj");
else
List<String> bList = new ArrayList<>();
bList.add("new obj");
a.values = bList;
);
add a comment |Â
up vote
0
down vote
Here is you code example. For simplicity, I have removed the object B with String. basically forEach () loop can be use to achieve the same. However, for more complex logic, I would doing it with conventional java for loops to keep the code readable.
list.stream().forEach(val -> A a = map.get(a); if(a.values != null && !a.values.isEmpty())
a.values.add("new obj");
else
List<String> bList = new ArrayList<>();
bList.add("new obj");
a.values = bList;
);
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Here is you code example. For simplicity, I have removed the object B with String. basically forEach () loop can be use to achieve the same. However, for more complex logic, I would doing it with conventional java for loops to keep the code readable.
list.stream().forEach(val -> A a = map.get(a); if(a.values != null && !a.values.isEmpty())
a.values.add("new obj");
else
List<String> bList = new ArrayList<>();
bList.add("new obj");
a.values = bList;
);
Here is you code example. For simplicity, I have removed the object B with String. basically forEach () loop can be use to achieve the same. However, for more complex logic, I would doing it with conventional java for loops to keep the code readable.
list.stream().forEach(val -> A a = map.get(a); if(a.values != null && !a.values.isEmpty())
a.values.add("new obj");
else
List<String> bList = new ArrayList<>();
bList.add("new obj");
a.values = bList;
);
answered Jan 9 at 9:47
akshaya pandey
1111
1111
add a comment |Â
add a comment |Â
1
What makes you think this isn't java 8? Sure there might be an alternative implementation that uses streams, but that also gives more overhead so I doubt it would be better here. As it is now I don't really see the point of this question. The code shown is so vague that I doubt it actually belongs on this site. Maybe I'm just missing something so I'll just downvote and let other people decide what they want to do with it.
â Imus
Jan 9 at 8:32
@Imus I posted the same question in stackoverflow and was asked this question belongs to this site so I moved it here. Additionally, I am asked to move all java6 code which is like this to the latest java8 (streams api) way. I am not very sure how to do this so I asked. If you want me to explain further I can do that.
â utkarsh31
Jan 9 at 8:49
2
Here's a blog with interesting counter arguments that you can pass on to your superiors to challenge their decission on using streams only. Streams CAN be useful but I wouldn't force using them everywhere without thinking ...
â Imus
Jan 9 at 12:54
@TobySpeight Thank you for the insight, I have rephrased the question please update if there is still something missing. It would be greatly appreciated if you could remove the downvote and on hold if the rephrased question fits the website standards
â utkarsh31
Jan 10 at 4:24