My First Post      My Facebook Profile      My MeOnShow Profile      W3LC Facebook Page      Learners Consortium Group      Job Portal      Shopping @Yeyhi.com

Pages










Showing posts with label for. Show all posts
Showing posts with label for. Show all posts

Monday, August 31, 2020

Replace For Loop with Foreach in Java: PMD ruleset="Best Practices" rule="ForLoopCanBeForeach"


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20

private boolean isEligible(final BookedItems bookedItem) {
if (ALLOWED_TYPES.stream().anyMatch(cartItem.getProductType()::equalsIgnoreCase)) {
      List<HomeProduct> listHomeProducts = cartItem.getProducts().getHomeProducts();
      for (int counter = 0; counter < listHomeProducts.size(); counter++) {
        List<CartTicketInfo> listCartTicketInfo = listHomeProducts.get(counter).getCartTicketInfoList();
        for (int counter2 = 0; counter2 < listCartTicketInfo.size(); counter2++) {
          if (listCartTicketInfo.get(counter2).getIsUnusedTicket())  {
            return true;
          }
        }
      }
    }
    return false;
  }
}

Easy modification for this code is as follows:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
private boolean isEligibleWaiverRedemptionItem(final BookedItems bookedItem) {
    if (ALLOWED_TYPES.stream().anyMatch(cartItem.getProductType()::equalsIgnoreCase)) {
      for (HomeProduct homeProduct : cartItem.getProducts().getHomeProducts()) {
for (CartTicketInfo cartTicketInfo : homeProduct.getCartTicketInfoList()) { if (CartTicketInfo.getIsUnusedTicket()) { return true; } } } } return false; } }

Monday, July 18, 2011

Panoramic 3D view from tongue

Welcome to a panaromic view from a tongue. This is obviously created by a brilliant mind. Nico Roig created this fantastic visualization of tongue in mouth at.


Dentistry in depth in Barcelona

It is said that the image of the dentist is real while the mouth is creation. To see the original post Click. So If you ever wanted to see what it's like sitting on the tongue, you have your choice. Yuk!!

Augmented Hyperreality 3D Video visions

Now this is something seriously good invention of its type. The day these types of videos become common and relayed by all DTH or Channel broadcasting services, we will feel we are really at the live location. That would really be the Real LIVE Telecasts ;)


Comment on on did you find this video ;)
Pls Support the blog by Clicking Ads.

Thursday, June 16, 2011

Free National Aptitude Test Talenthunt 2011

Hi,
I came across a link www.nationaltalenthunt.com conducting a Free
National Aptitude Test on Sept 4, 2011. If it interest anyone, he/she may visit
the site. Please be advised that I have no relation with the aforementioned organization and have not tested any credibilty or quality of test.
Just wanted to pass the info.