{"id":122847,"date":"2024-03-08T11:22:17","date_gmt":"2024-03-08T09:22:17","guid":{"rendered":"https:\/\/examples.javacodegeeks.com\/?p=122847"},"modified":"2024-03-08T11:22:20","modified_gmt":"2024-03-08T09:22:20","slug":"hashmap-to-arraylist-in-java","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/","title":{"rendered":"HashMap to ArrayList In Java"},"content":{"rendered":"<p>In Java programming, converting HashMap values into an ArrayList is a common operation when transitioning between data structures. Let us explore efficient methods to perform the conversion of Java HashMap to an ArrayList.<\/p>\n<h2><a name=\"introduction\"><\/a>1. Exploring HashMap and ArrayList in Java<\/h2>\n<p><a href=\"https:\/\/docs.oracle.com\/javase\/8\/docs\/api\/java\/util\/HashMap.html\" target=\"_blank\" rel=\"noopener\">HashMap<\/a> is a class in Java that implements the Map interface and stores data in key-value pairs. It allows quick retrieval of values based on their associated keys. Each key in a HashMap must be unique, but multiple keys can be associated with the same value. HashMap provides constant-time performance for basic operations like <code>get()<\/code> and <code>put()<\/code>, making it efficient for large datasets.<\/p>\n<p><a href=\"https:\/\/docs.oracle.com\/javase\/8\/docs\/api\/java\/util\/ArrayList.html\" target=\"_blank\" rel=\"noopener\">ArrayList<\/a> is a dynamic array implementation in Java that provides resizable arrays. Unlike traditional arrays, ArrayList can grow or shrink dynamically as elements are added or removed. It offers constant-time access to elements by index and is typically used when the size of the collection is not known in advance or needs to change frequently. ArrayList provides flexibility in managing collections of objects in Java programs.<\/p>\n<h3>1.1 Comparison<\/h3>\n<p>HashMap and ArrayList serve different purposes in Java programming. While HashMap is used for mapping keys to values and provides efficient lookup based on keys, ArrayList is used for storing a collection of elements in a sequential order. HashMap is ideal for scenarios where fast retrieval based on keys is required, whereas ArrayList is suitable for situations where elements need to be accessed or modified by their index position.<\/p>\n<h2>2. Converting HashMap Values into ArrayList in Java<\/h2>\n<p>Converting HashMap values into an ArrayList is a common operation in Java when transitioning between different data structures. This process allows for easier manipulation and iteration over the values contained within the HashMap.<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>Consider a scenario where we have a HashMap containing names and corresponding ages:<\/p>\n<pre class=\"brush:java; wrap-lines:false;\">package com.jcg.example;\n\nimport java.util.*;\n\npublic class HashMapToArrayListExample {\n\tpublic static void main(String[] args) {\n\t\t\/\/ Create a HashMap\n\t\tHashMap&lt;String, Integer&gt; ageMap = new HashMap&lt;&gt;();\n\t\t\n\t\t\/\/ Add some key-value pairs\n\t\tageMap.put(\"John\", 30);\n\t\tageMap.put(\"Alice\", 25);\n\t\tageMap.put(\"Bob\", 35);\n\t\t\n\t\t\/\/ Convert HashMap values into ArrayList\n\t\tArrayList&lt;Integer&gt; ageList = new ArrayList&lt;&gt;(ageMap.values());\n\t\t\n\t\t\/\/ Print the ArrayList\n\t\tSystem.out.println(\"ArrayList of ages: \" + ageList);\n\t}\n}\n<\/pre>\n<p>In this example, we first create a HashMap <code>ageMap<\/code> with String keys representing names and Integer values representing ages. We then use the <code>values()<\/code> method of HashMap to obtain a Collection view of the values contained in the map, which is then passed to the ArrayList constructor to create an ArrayList <code>ageList<\/code> containing the ages. Finally, we print the ArrayList to observe the result.<\/p>\n<pre class=\"brush:plain; wrap-lines:false;\">ArrayList of ages: [30, 25, 35]\n<\/pre>\n<h2>3. Converting HashMap Values into ArrayList using Guava in Java<\/h2>\n<p>Guava is an open-source Java library developed by Google that provides a set of utility classes and methods to simplify Java programming. It includes various collections utilities that make common tasks, such as converting HashMap values into an ArrayList, more convenient.<\/p>\n<p>Let&#8217;s demonstrate how to use Guava to convert HashMap values into an ArrayList:<\/p>\n<pre class=\"brush:java; wrap-lines:false;\">package com.jcg.example;\n\nimport com.google.common.collect.Lists;\nimport java.util.HashMap;\nimport java.util.ArrayList;\n\npublic class GuavaHashMapToArrayListExample {\n\tpublic static void main(String[] args) {\n\t\t\/\/ Create a HashMap\n\t\tHashMap&lt;String, Integer&gt; ageMap = new HashMap&lt;&gt;();\n\t\t\n\t\t\/\/ Add some key-value pairs\n\t\tageMap.put(\"John\", 30);\n\t\tageMap.put(\"Alice\", 25);\n\t\tageMap.put(\"Bob\", 35);\n\t\t\n\t\t\/\/ Convert HashMap values into ArrayList using Guava\n\t\tArrayList&lt;Integer&gt; ageList = Lists.newArrayList(ageMap.values());\n\t\t\n\t\t\/\/ Print the ArrayList\n\t\tSystem.out.println(\"ArrayList of ages: \" + ageList);\n\t}\n}\n<\/pre>\n<p>In this example, we first create a HashMap <code>ageMap<\/code> with String keys representing names and Integer values representing ages. We then use Guava&#8217;s <code>Lists.newArrayList()<\/code> method to directly convert the Collection view of values obtained from the HashMap into an ArrayList <code>ageList<\/code>. Finally, we print the ArrayList to observe the result.<\/p>\n<pre class=\"brush:plain; wrap-lines:false;\">ArrayList of ages: [30, 25, 35]\n<\/pre>\n<p>To include Guava library in the project, you need to add the Guava library JAR file to your project&#8217;s dependencies. Here&#8217;s the Maven dependency information for Guava:<\/p>\n<pre class=\"brush:xml; wrap-lines:false;\">&lt;dependency&gt;\n    &lt;groupId&gt;com.google.guava&lt;\/groupId&gt;\n    &lt;artifactId&gt;guava&lt;\/artifactId&gt;\n    &lt;version&gt;31.0.1-jre&lt;\/version&gt;\n&lt;\/dependency&gt;\n<\/pre>\n<h2>4. Conclusion<\/h2>\n<p>In conclusion, whether converting HashMap values into an ArrayList using core Java or leveraging the utilities provided by the Guava library, developers have efficient options at their disposal. Utilizing core Java methods allows for a straightforward approach, utilizing basic constructs and methods inherent to the language. On the other hand, employing Guava streamlines the process, offering concise and expressive utility methods like <code>Lists.newArrayList()<\/code>, simplifying the conversion task. Both methods facilitate the seamless transition between data structures, enhancing flexibility and productivity in Java programming. Whether opting for the simplicity of core Java or the convenience of Guava, developers can efficiently manage and manipulate data, ensuring robustness and efficiency in their Java applications.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Java programming, converting HashMap values into an ArrayList is a common operation when transitioning between data structures. Let us explore efficient methods to perform the conversion of Java HashMap to an ArrayList. 1. Exploring HashMap and ArrayList in Java HashMap is a class in Java that implements the Map interface and stores data in &hellip;<\/p>\n","protected":false},"author":119,"featured_media":1204,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[175,205,47030,212],"class_list":["post-122847","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-core-java","tag-arraylist-2","tag-hashmap-2","tag-java-arraylist","tag-java-basics-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>HashMap to ArrayList In Java - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HashMap to ArrayList In Java - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-08T09:22:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-08T09:22:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yatin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yatin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\"},\"author\":{\"name\":\"Yatin\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13\"},\"headline\":\"HashMap to ArrayList In Java\",\"datePublished\":\"2024-03-08T09:22:17+00:00\",\"dateModified\":\"2024-03-08T09:22:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\"},\"wordCount\":607,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg\",\"keywords\":[\"arraylist\",\"hashmap\",\"Java ArrayList\",\"java basics\"],\"articleSection\":[\"Core Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\",\"name\":\"HashMap to ArrayList In Java - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg\",\"datePublished\":\"2024-03-08T09:22:17+00:00\",\"dateModified\":\"2024-03-08T09:22:20+00:00\",\"description\":\"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg\",\"width\":150,\"height\":150,\"caption\":\"Bipartite Graph\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Core Java\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/java-development\/core-java\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"HashMap to ArrayList In Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13\",\"name\":\"Yatin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg\",\"caption\":\"Yatin\"},\"description\":\"An experience full-stack engineer well versed with Core Java, Spring\/Springboot, MVC, Security, AOP, Frontend (Angular &amp; React), and cloud technologies (such as AWS, GCP, Jenkins, Docker, K8).\",\"sameAs\":[\"https:\/\/www.javacodegeeks.com\"],\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/yatin-batra\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HashMap to ArrayList In Java - Java Code Geeks","description":"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/","og_locale":"en_US","og_type":"article","og_title":"HashMap to ArrayList In Java - Java Code Geeks","og_description":"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.","og_url":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2024-03-08T09:22:17+00:00","article_modified_time":"2024-03-08T09:22:20+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg","type":"image\/jpeg"}],"author":"Yatin","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Yatin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/"},"author":{"name":"Yatin","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13"},"headline":"HashMap to ArrayList In Java","datePublished":"2024-03-08T09:22:17+00:00","dateModified":"2024-03-08T09:22:20+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/"},"wordCount":607,"commentCount":0,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg","keywords":["arraylist","hashmap","Java ArrayList","java basics"],"articleSection":["Core Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/","url":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/","name":"HashMap to ArrayList In Java - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg","datePublished":"2024-03-08T09:22:17+00:00","dateModified":"2024-03-08T09:22:20+00:00","description":"Java HashMap ArrayList: Efficiently convert Java HashMap values to ArrayList for streamlined data structure transitions.","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2012\/12\/java-logo.jpg","width":150,"height":150,"caption":"Bipartite Graph"},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/hashmap-to-arraylist-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java Development","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/"},{"@type":"ListItem","position":3,"name":"Core Java","item":"https:\/\/examples.javacodegeeks.com\/category\/java-development\/core-java\/"},{"@type":"ListItem","position":4,"name":"HashMap to ArrayList In Java"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13","name":"Yatin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg","caption":"Yatin"},"description":"An experience full-stack engineer well versed with Core Java, Spring\/Springboot, MVC, Security, AOP, Frontend (Angular &amp; React), and cloud technologies (such as AWS, GCP, Jenkins, Docker, K8).","sameAs":["https:\/\/www.javacodegeeks.com"],"url":"https:\/\/examples.javacodegeeks.com\/author\/yatin-batra\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/122847","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/119"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=122847"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/122847\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/1204"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=122847"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=122847"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=122847"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}