{"id":22,"date":"2019-01-14T21:55:11","date_gmt":"2019-01-14T21:55:11","guid":{"rendered":"https:\/\/kindsonthegenius.com\/java\/?p=22"},"modified":"2019-03-02T04:34:12","modified_gmt":"2019-03-02T04:34:12","slug":"04-java-keywords","status":"publish","type":"post","link":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/","title":{"rendered":"Java &#8211; Keywords"},"content":{"rendered":"<p>In this tutorial, we would examine various Java keywords beginning with Java Modifiers<\/p>\n<p>We would cover the following.<\/p>\n<ol>\n<li><a href=\"#t1\">Java Modifiers<\/a><\/li>\n<li><a href=\"#t2\">Types of Variable<\/a><\/li>\n<li><a href=\"#t3\">Enums in Java<\/a><\/li>\n<li><a href=\"#t4\">List of Java Keywords<\/a><\/li>\n<li><a href=\"#t5\">The Interface Keyword<\/a><\/li>\n<\/ol>\n<p><\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"t1\">1. Java Modifiers<\/h4>\n\n\n\n<p>Modifiers are keywords used to add additional meaning or restriction to classes, methods, or variables. The two categories of java modifiers are<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Access Modifiers: public, protected, private, default<\/li><li>Non-Access Modifiers: final, abstract, strictfp<\/li><\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"t2\">2. Types of Variables in Java<\/h4>\n\n\n\n<p>As you already know, variables are memory locations for storing data. Names of variables are chosen by the programmer.  Therefore, Java provide three different categories of variable that can be used<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Local Variables<\/li><li>Class Variables (declared using the static keyword)<\/li><li>Instance Variable<\/li><\/ul>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"t3\">3. Enums in Java<\/h4>\n\n\n\n<p>Another important keyword in Java is enum. You can use Enum to limit a the values of a variable to some predefined values. These predefined values are called enums.<\/p>\n\n\n\n<p>For example, we may have an application that uses a variable color. Since you want color to be limited to only certain values, you can use enum to create a list of colors. As such, color cannot be assigned a value that is not actually a color. <\/p>\n\n\n\n<p>An example is given in Listing 1.0. If you run the code, you could see that the output is green<\/p>\n\n\n<p><!-- HTML generated using hilite.me --><\/p>\n<div style=\"background: #ffffff; overflow: auto; width: auto; border: solid gray; border-width: .1em .1em .1em .8em; padding: .2em .6em;\">\n<pre style=\"margin: 0; line-height: 125%;\"><span style=\"color: #888888;\">\/\/Your Testing Enum<\/span>\n<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">class<\/span> <span style=\"color: #bb0066; font-weight: bold;\">EnumExample<\/span> <span style=\"color: #333333;\">{<\/span>\n\t<span style=\"color: #008800; font-weight: bold;\">enum<\/span> color<span style=\"color: #333333;\">{<\/span>red<span style=\"color: #333333;\">,<\/span> blue<span style=\"color: #333333;\">,<\/span> green<span style=\"color: #333333;\">,<\/span> yellow<span style=\"color: #333333;\">,<\/span> pink<span style=\"color: #333333;\">,<\/span> orange<span style=\"color: #333333;\">}<\/span>\n\t<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">static<\/span> <span style=\"color: #333399; font-weight: bold;\">void<\/span> <span style=\"color: #0066bb; font-weight: bold;\">main<\/span><span style=\"color: #333333;\">(<\/span>String<span style=\"color: #333333;\">[]<\/span> args<span style=\"color: #333333;\">)<\/span> <span style=\"color: #333333;\">{<\/span>\t\n\t\tcolor myColor <span style=\"color: #333333;\">=<\/span> color<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">green<\/span><span style=\"color: #333333;\">;<\/span>\n\t\tSystem<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">out<\/span><span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">println<\/span><span style=\"color: #333333;\">(<\/span>myColor<span style=\"color: #333333;\">);<\/span>\n\t\tcolor myColor <span style=\"color: #333333;\">=<\/span> <span style=\"background-color: #fff0f0;\">\"yello\"<\/span><span style=\"color: #333333;\">;<\/span>   <span style=\"color: #888888;\">\/\/compiletime error!<\/span>\n\t<span style=\"color: #333333;\">}<\/span>\n<span style=\"color: #333333;\">}<\/span>\n<\/pre>\n<\/div>\n<p>Listing 1.0: Example of the Enum keyword<\/p>\n\n\n<p>In the example above, you can only assign to myColor, a value that is in the enum list. Therefore, if you try to assign any value not in the enum list to myColor, you  will have  an error<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"t4\">4. List of Java Keywords<\/h4>\n\n\n\n<p>You can find list of Java keywords in Table 1.0. You cannot use any of these keywords cannot be used to name identifier.<\/p>\n\n\n<p><\/p>\n\n\n<table class=\"wp-block-table\"><tbody><tr><td>abstract<\/td><td>assert<\/td><td>boolean<\/td><td>break<\/td><\/tr><tr><td>byte<\/td><td>case<\/td><td>catch<\/td><td>char<\/td><\/tr><tr><td>class<\/td><td>const<\/td><td>continue<\/td><td>default<\/td><\/tr><tr><td>do<\/td><td>double<\/td><td>else<\/td><td>enum<\/td><\/tr><tr><td>extends<\/td><td>final<\/td><td>finally<\/td><td>float<\/td><\/tr><tr><td>for<\/td><td>goto<\/td><td>if<\/td><td>implements<\/td><\/tr><tr><td>import<\/td><td>instanceof<\/td><td>int<\/td><td>interface<\/td><\/tr><tr><td>long<\/td><td>native<\/td><td>new<\/td><td>package<\/td><\/tr><tr><td>private<\/td><td>protected<\/td><td>public<\/td><td>return<\/td><\/tr><tr><td>short<\/td><td>static<\/td><td>strictfp<\/td><td>super<\/td><\/tr><tr><td>switch<\/td><td>synchronized<\/td><td>this<\/td><td>throw<\/td><\/tr><tr><td>throws<\/td><td>transient<\/td><td>try<\/td><td>void<\/td><\/tr><tr><td>volatile<\/td><td>while<\/td><td><\/td><td><\/td><\/tr><\/tbody><\/table>\n\n\n<p>Table 1.0: List of Java Keywords<\/p>\n<p><\/p>\n\n\n<h4 class=\"wp-block-heading\" id=\"t5\">5. The Interface Keyword<\/h4>\n\n\n\n<p>Finally we would briefly learn about Interfaces. An interface is a class can  only be inherited. You use interface keyword to create a class that needs not be instantiated.<\/p>\n\n\n\n<p>An example of interface in Java is given in Listing 1.1 below<\/p>\n\n\n<p><!-- HTML generated using hilite.me --><\/p>\n<div style=\"background: #ffffff; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;\"><pre style=\"margin: 0; line-height: 125%\"><span style=\"color: #008800; font-weight: bold\">public<\/span> <span style=\"color: #008800; font-weight: bold\">interface<\/span> <span style=\"color: #BB0066; font-weight: bold\">Shape<\/span> <span style=\"color: #333333\">{<\/span>\n\t<span style=\"color: #008800; font-weight: bold\">public<\/span> <span style=\"color: #333399; font-weight: bold\">void<\/span> <span style=\"color: #0066BB; font-weight: bold\">render<\/span><span style=\"color: #333333\">();<\/span> \n\t\n\t<span style=\"color: #008800; font-weight: bold\">public<\/span> <span style=\"color: #333399; font-weight: bold\">void<\/span> <span style=\"color: #0066BB; font-weight: bold\">getType<\/span><span style=\"color: #333333\">();<\/span>\n<span style=\"color: #333333\">}<\/span>\n<\/pre>\n<\/div>\n<p>Listing 1.1: Example of Java Interface<\/p>\n\n\n<p>In the above example, we have created an interface called Shape. The two methods, render() and getType() are not implemented here. Therefore they must be implemented by a class that implements this interface. We would learn more about interfaces in subsequent lessons<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we would examine various Java keywords beginning with Java Modifiers We would cover the following. Java Modifiers Types of Variable Enums in &hellip; <\/p>\n","protected":false},"author":395,"featured_media":23,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-22","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Java - Keywords - Java Tutorials<\/title>\n<meta name=\"description\" content=\"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java - Keywords - Java Tutorials\" \/>\n<meta property=\"og:description\" content=\"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/\" \/>\n<meta property=\"og:site_name\" content=\"Java Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-14T21:55:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-02T04:34:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"950\" \/>\n\t<meta property=\"og:image:height\" content=\"518\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"kindsonthegenius\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kindsonthegenius\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/\"},\"author\":{\"name\":\"kindsonthegenius\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\"},\"headline\":\"Java &#8211; Keywords\",\"datePublished\":\"2019-01-14T21:55:11+00:00\",\"dateModified\":\"2019-03-02T04:34:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/\"},\"wordCount\":431,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Keywords-in-Java.jpg\",\"articleSection\":[\"Java Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/\",\"name\":\"Java - Keywords - Java Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Keywords-in-Java.jpg\",\"datePublished\":\"2019-01-14T21:55:11+00:00\",\"dateModified\":\"2019-03-02T04:34:12+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\"},\"description\":\"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Keywords-in-Java.jpg\",\"contentUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/wp-content\\\/uploads\\\/sites\\\/9\\\/2019\\\/01\\\/Keywords-in-Java.jpg\",\"width\":950,\"height\":518},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/04-java-keywords\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java &#8211; Keywords\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#website\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/\",\"name\":\"Java Tutorials\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/#\\\/schema\\\/person\\\/63a68934672db675ff0cd80d066510c2\",\"name\":\"kindsonthegenius\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g\",\"caption\":\"kindsonthegenius\"},\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/java\\\/author\\\/kindsonthegenius-2\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Java - Keywords - Java Tutorials","description":"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords","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:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/","og_locale":"en_US","og_type":"article","og_title":"Java - Keywords - Java Tutorials","og_description":"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords","og_url":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/","og_site_name":"Java Tutorials","article_published_time":"2019-01-14T21:55:11+00:00","article_modified_time":"2019-03-02T04:34:12+00:00","og_image":[{"width":950,"height":518,"url":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg","type":"image\/jpeg"}],"author":"kindsonthegenius","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kindsonthegenius","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#article","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/"},"author":{"name":"kindsonthegenius","@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2"},"headline":"Java &#8211; Keywords","datePublished":"2019-01-14T21:55:11+00:00","dateModified":"2019-03-02T04:34:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/"},"wordCount":431,"commentCount":0,"image":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg","articleSection":["Java Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/","url":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/","name":"Java - Keywords - Java Tutorials","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#primaryimage"},"image":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg","datePublished":"2019-01-14T21:55:11+00:00","dateModified":"2019-03-02T04:34:12+00:00","author":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2"},"description":"In this Tutorial, you will learn about keywords in Java. You will also learn about how to use the enum type in Java and other keywords","breadcrumb":{"@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#primaryimage","url":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg","contentUrl":"https:\/\/www.kindsonthegenius.com\/java\/wp-content\/uploads\/sites\/9\/2019\/01\/Keywords-in-Java.jpg","width":950,"height":518},{"@type":"BreadcrumbList","@id":"https:\/\/www.kindsonthegenius.com\/java\/04-java-keywords\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.kindsonthegenius.com\/java\/"},{"@type":"ListItem","position":2,"name":"Java &#8211; Keywords"}]},{"@type":"WebSite","@id":"https:\/\/www.kindsonthegenius.com\/java\/#website","url":"https:\/\/www.kindsonthegenius.com\/java\/","name":"Java Tutorials","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kindsonthegenius.com\/java\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.kindsonthegenius.com\/java\/#\/schema\/person\/63a68934672db675ff0cd80d066510c2","name":"kindsonthegenius","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3079a7f663b02e801d03cd075852a037af36bd179b5fbcd0603bae3dd7833a9b?s=96&d=mm&r=g","caption":"kindsonthegenius"},"url":"https:\/\/www.kindsonthegenius.com\/java\/author\/kindsonthegenius-2\/"}]}},"_links":{"self":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/22","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/users\/395"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/comments?post=22"}],"version-history":[{"count":1,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/22\/revisions"}],"predecessor-version":[{"id":24,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/posts\/22\/revisions\/24"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/media\/23"}],"wp:attachment":[{"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/media?parent=22"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/categories?post=22"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/java\/wp-json\/wp\/v2\/tags?post=22"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}