<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Java on AI Infra</title>
    <link>https://raghavxk8s.com/categories/java/</link>
    <description>Recent content in Java on AI Infra</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 20 Jun 2019 19:23:25 +0000</lastBuildDate>
    
	<atom:link href="https://raghavxk8s.com/categories/java/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Java Collections</title>
      <link>https://raghavxk8s.com/post/java-collections/</link>
      <pubDate>Thu, 20 Jun 2019 19:23:25 +0000</pubDate>
      
      <guid>https://raghavxk8s.com/post/java-collections/</guid>
      <description>Collections  Map entry
Map&amp;lt;String, String&amp;gt; map = new HashMap&amp;lt;String, String&amp;gt;(); for (Map.Entry&amp;lt;String,String&amp;gt; entry : gfg.entrySet()) System.out.println(&amp;quot;Key = &amp;quot; + entry.getKey() + &amp;quot;, Value = &amp;quot; + entry.getValue());  Loops
for(String str : strArray) { System.out.println(str); }  Array to list
List&amp;lt;Integer&amp;gt; list = Arrays.asList(integerArray)  List to Array int[] arr = list.toArray();  Streams
Stream&amp;lt;Integer&amp;gt; stream = list.stream(); List&amp;lt;Integer&amp;gt; evenNumbersList = list.stream() .filter(i -&amp;gt; i%2 == 0) .collect(Collectors.toList());  memberNames.</description>
    </item>
    
  </channel>
</rss>