Skip to content

Tag: java-8

How to get a generic type which is defined on method in Java?

Question 1: Suggest I have a example like this: then can I get type String in methodA without actually passing String to it? Question 2: If the previous example is transformed to this: I mean what was passed into methodA is no more a simple object but a lambda expression, also, can I get type String in method…

void with Generics in Java

I have a function that returns void Generic method Implementation of generic interface How can I use void in IRequestHandler<DeleteProductCommand, Void> so that I can map void from iProductService.delete(deleteProductCommand.id); Answer Option 1: Just return null: Option 2: Update the IProductService::d…

Downgrade from Java OpenJDK 64-Bit Server VM 1.8.0_292

Good morning, I have an application that works only with Java OpenJDK 64-Bit Server VM 1.8.0_292, however we are in the Java OpenJDK 64-Bit Server VM 1.8.0_312 version. How can I install it? Answer Go here: https://adoptium.net/releases.html?variant=openjdk8 download package extract package try calling it dir…

Map a List to DTO inside map – java

I have such collection: Map<Integer, List<MyObject>> collection I would like to map the whole list of MyObject to MyObjectDTO and return the whole map with the mapped list. So return will be: Map<Integer, List<MyObjectDto>> collectionWithDtos What is the easiest and quickest way? I&#82…

arranging the records in customised way

Sort Procedure First sort by the delivered date & in case of multiple records on same date sort by delivered time (Note: if a record has both ordered and Delivered Date ,it should be sorted by Delivered date only) 08-JUN: 03.00, 08-JUN: 04.00 Then look at the ordered date without delivered date which also…