{"id":150626,"date":"2021-01-29T09:54:28","date_gmt":"2021-01-29T09:54:28","guid":{"rendered":"https:\/\/www.softwaretestinghelp.com\/?page_id=150626"},"modified":"2025-04-01T08:37:18","modified_gmt":"2025-04-01T08:37:18","slug":"java-continue-statement","status":"publish","type":"page","link":"https:\/\/www.softwaretestinghelp.com\/java-continue-statement\/","title":{"rendered":"Java Continue Statement &#8211; How To Use Continue In Java"},"content":{"rendered":"<p><strong>This tutorial explains how to use the Java Continue Statement in various scenarios while dealing with the loops with the help of programming examples:<\/strong><\/p>\n<p>In this tutorial, we will discuss Java\u2019s \u201cContinue Statement\u201d &#8211; one of the jump statements that Java supports.<\/p>\n<p>Here, we will cover the topic in detail along with descriptions, programs, examples, etc. Moreover, some frequently-asked questions will also be provided so that you will be aware of the trending questions that are being asked from the topic.<\/p>\n<p><strong>=&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/java\/\">Check ALL Java Tutorials Here<\/a><\/strong><\/p>\n<p><strong><em> <\/em><\/strong><\/p>\n<h3><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Java-continue-statement-1.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-151344\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Java-continue-statement-1.png\" alt=\"Java continue statement (1)\" width=\"700\" height=\"394\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Java-continue-statement-1.png 700w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Java-continue-statement-1-300x169.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" \/><\/a><\/h3>\n<h2>Jump Statements<\/h2>\n<p>Jump statements are those statements that transfer the control of the program to another part of the program. These statements are essential when the user wants the control to come out of the loop or terminate a statement sequence. Java supports these kinds of statements.<\/p>\n<p><strong>It has three jump statements as shown below:<\/strong><\/p>\n<ul>\n<li>continue<\/li>\n<li>break<\/li>\n<li>return<\/li>\n<\/ul>\n<p>We will be explaining the continue statement in the latter part of this tutorial. The other two jump statements will be covered in the upcoming tutorials.<\/p>\n<h2>Java Continue Statement<\/h2>\n<p>Sometimes, you might want to keep executing the loop but don\u2019t want to process the code for a particular iteration. This type of scenario is achievable with the\u00a0 Continue Java statement.<\/p>\n<h3>Skipping The Value In A Loop<\/h3>\n<p>Here, we are taking a small example to demonstrate how we can use continue in Java, especially in a loop.<\/p>\n<p>We have initialized a \u201cfor loop\u201d and a continue statement is specified after condition (i=2). This will make the loop skip the value of \u2018i\u2019 when (i=2) upon printing the value of \u2018i\u2019.<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">public class example {\r\n\r\n\tpublic static void main(String&#x5B;] args) {\r\n\r\n\t\t\/*\r\n\t\t *  Initialized a for loop and\r\n\t\t *  a continue statement is specified after \r\n\t\t *  condition (i==2).\r\n\t\t *  This will make the loop skip the value of 2.\r\n\t\t *\/\r\n\t\tfor (int i = 0; i &amp;lt; 5; i++) {\r\n\t\t\tif (i == 2) {\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\tSystem.out.println(i);\r\n\t\t}\r\n\t}\r\n}\r\n<\/pre>\n<p><strong>Output<\/strong><\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Skipping-the-value-in-a-loop.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-150638\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Skipping-the-value-in-a-loop.png\" alt=\"Skipping the value in a loop\" width=\"473\" height=\"133\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Skipping-the-value-in-a-loop.png 473w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Skipping-the-value-in-a-loop-300x84.png 300w\" sizes=\"(max-width: 473px) 100vw, 473px\" \/><\/a><\/p>\n<h3>Printing The Numbers<\/h3>\n<p>Now, we will use the continue statement to print two numbers on the same line delimited by space.<\/p>\n<p>In the below example, we have initialized a for-loop and then specified a condition to check whether \u2018i\u2019 is even or not. In case, the value of \u2018i\u2019 is even then the loop will continue without printing a new line.<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">public class example {\r\n\r\n\tpublic static void main(String&#x5B;] args) {\r\n\r\n\t\t\/\/ Initializied for-loop\r\n\t\tfor (int i = 0; i &amp;lt; 10; i++) {\r\n\t\t\t\r\n\t\t\/\/ Printing the value of 'i'\r\n\t\t\tSystem.out.print(i + &quot; &quot;);\r\n\t\t\t\r\n\t\t\/*\r\n\t\t *  If 'i' is even, then the loop will\r\n\t\t *  continue without printing a new line. \r\n\t\t *\/\r\n\t\t\tif (i % 2 == 0)\r\n\t\t\t\tcontinue;\r\n\t\t\tSystem.out.println(&quot;&quot;);\r\n\t\t}\r\n\t}\r\n}\r\n<\/pre>\n<p><strong>Output<\/strong><\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Printing-the-numbers.png\"><img decoding=\"async\" class=\"alignnone wp-image-150639 size-full\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Printing-the-numbers.png\" alt=\"Printing the numbers\" width=\"431\" height=\"152\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Printing-the-numbers.png 431w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Printing-the-numbers-300x106.png 300w\" sizes=\"(max-width: 431px) 100vw, 431px\" \/><\/a><\/p>\n<h3>Continue Java With A for-Each Loop<\/h3>\n<p>In this example, we will demonstrate how to use the Continue statement in a for-each loop. Here, we have initialized an array that contains five numbers.<\/p>\n<p>Then, we have started a for-each loop. If the element of an array matches the value = 15, then it will make the loop skip the value of 15.<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">public class example {\r\n\r\n\tpublic static void main(String&#x5B;] args) {\r\n\t\t\r\n\t\t\/\/ initialized an array of five elements\r\n\t\tint&#x5B;] arr = {01, 05, 10, 15, 20};\r\n\t\t\r\n\t\t\/*\r\n\t\t * for each loop stats here. If the element of an array matches the\r\n\t\t * value = 15, then it will make the loop skip the value of 15\r\n\t\t *\/\r\n\t\t\r\n\t\tfor(int num : arr){\r\n\t\t\tif(num == 15){\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tSystem.out.println(num);\r\n\t\t}\r\n\t\t\r\n\t\t\r\n\t}\r\n\r\n}\r\n<\/pre>\n<p><strong>Output<\/strong><\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-for-each-loop.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-150640\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-for-each-loop.png\" alt=\"Continue Java with a for-each loop\" width=\"556\" height=\"133\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-for-each-loop.png 556w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-for-each-loop-300x72.png 300w\" sizes=\"(max-width: 556px) 100vw, 556px\" \/><\/a><\/p>\n<h3>Continue Java With A While Loop<\/h3>\n<p>In this section, we will demonstrate how to use a continue statement inside <a href=\"https:\/\/www.softwaretestinghelp.com\/java-while-loop-tutorial\/\">a Java while loop<\/a>. Initially, we have taken an input variable with some value. Then, we have initialized a while loop where we have put a condition (i==2) followed by the continue statement.<\/p>\n<p>When (i==2), the value of &#8216;i&#8217; will be skipped in the output and the execution will continue as usual.<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">public class example {\r\n\r\n\tpublic static void main(String&#x5B;] args) {\r\n\r\n\t\tint i = 5;\r\n\t\twhile (i &amp;gt;= 0) {\r\n\t\t\t\r\n\t\t\t\/*\r\n\t\t\t * when i==2, the value of 'i' will be skipped\r\n\t\t\t * in the output and the execution will continue.\r\n\t\t\t *\/\r\n\t\t\t\r\n\t\t\tif (i == 2) {\r\n\t\t\t\ti = i-1;\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\tSystem.out.println(i);\r\n\t\t\ti = i-1;\r\n\t\t}\r\n\t}\r\n}\r\n<\/pre>\n<p><strong>Output<\/strong><\/p>\n<h3><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-with-a-while-loop.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-150641\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-with-a-while-loop.png\" alt=\"Continue with a while loop\" width=\"447\" height=\"150\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-with-a-while-loop.png 447w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-with-a-while-loop-300x101.png 300w\" sizes=\"(max-width: 447px) 100vw, 447px\" \/><\/a><\/h3>\n<h3>Continue Java With A Do-While Loop<\/h3>\n<p>In this section, we will demonstrate how to use a continue statement inside a <a href=\"https:\/\/www.softwaretestinghelp.com\/java-do-while-loop\/\">do-while loop.<\/a> First of all, we have initialized a variable \u2018i\u2019 with 0. Then, we started a do-while loop.<\/p>\n<p>In the do-while loop, we have put a condition that when i==2, the value of &#8216;i&#8217; will be skipped in the output and the execution will continue till &#8216;i&#8217; is less than or equal to 5.<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">public class example {\r\n\r\n\tpublic static void main(String&#x5B;] args) {\r\n\r\n\t\tint i = 0;\r\n\t\tdo {\r\n\t\t\t\/*\r\n\t\t\t * when i==2, the value of 'i' will be skipped in the output and the\r\n\t\t\t * execution will continue till i is less than or equal to 5.\r\n\t\t\t *\/\r\n\r\n\t\t\tif (i == 2) {\r\n\t\t\t\ti++;\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tSystem.out.print(i + &quot; &quot;);\r\n\t\t\ti++;\r\n\t\t} while (i &amp;lt;= 5);\r\n\r\n\t}\r\n}\r\n<\/pre>\n<p><strong>Output<\/strong><\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-do-while-loop.png\"><img decoding=\"async\" class=\"alignnone wp-image-150642 size-full\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-do-while-loop.png\" alt=\"Continue Java with a do-while loop\" width=\"465\" height=\"79\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-do-while-loop.png 465w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2020\/12\/Continue-Java-with-a-do-while-loop-300x51.png 300w\" sizes=\"(max-width: 465px) 100vw, 465px\" \/><\/a><\/p>\n<h2>Java Break Vs Continue<\/h2>\n<p>In the Java break vs continue topic, we will list down the major differences in the Java continue and break statements.<\/p>\n\n<div id=\"tablepress-1952-scroll-wrapper\" class=\"tablepress-scroll-wrapper\">\n<table id=\"tablepress-1952\" class=\"tablepress tablepress-id-1952 tablepress-responsive\">\n<thead>\n<tr class=\"row-1\">\n\t<th class=\"column-1\">Break Java Statement<\/th><th class=\"column-2\">Continue Java Statement<\/th>\n<\/tr>\n<\/thead>\n<tbody class=\"row-striping row-hover\">\n<tr class=\"row-2\">\n\t<td class=\"column-1\">\u25cf\u00a0It is used to jump out of the loop.<\/td><td class=\"column-2\">\u25cf\u00a0It is used to break a single iteration.<\/td>\n<\/tr>\n<tr class=\"row-3\">\n\t<td class=\"column-1\">\u25cf\u00a0The loop gets terminated or halted permanently when the break statement condition matches.<\/td><td class=\"column-2\">\u25cf\u00a0The loop gets halted only for a single iteration when the continue Java statement condition matches.<\/td>\n<\/tr>\n<tr class=\"row-4\">\n\t<td class=\"column-1\">\u25cf\u00a0It is very commonly used with the \u201cswitch statements\u201d.<\/td><td class=\"column-2\">\u25cf\u00a0It is not compatible with the \u201cswitch statements\u201d.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<!-- #tablepress-1952 from cache -->\n<h3>Frequently Asked Questions<\/h3>\n<p><span style=\"color: #ff6600;\"><strong>Q #1) What is Java continue?<\/strong><\/span><\/p>\n<p><strong>Answer: <\/strong>Continue statement in Java is a jump statement that is used to transfer the control to another part of the program.<\/p>\n<p><span style=\"color: #ff6600;\"><strong>Q #2) Can we use Continue in Java?<\/strong><\/span><\/p>\n<p><strong>Answer:<\/strong> Yes, we can use continue in Java by specifying some conditions inside a loop.<\/p>\n<p><span style=\"color: #ff6600;\"><strong>Q #3) Do While loop continue?<\/strong><\/span><\/p>\n<p><strong>Answer:<\/strong> Yes, you can use a continue statement Java with a while loop (as illustrated above).<\/p>\n<h2>Conclusion<\/h2>\n<p>In this tutorial, we have explained one of the important Jump Statement i.e. Java Continue statement. This is a small topic but is very useful while dealing with the loops. We have properly demonstrated the various scenarios\/condition in which you can use the continue statement.<\/p>\n<p>Proper examples, FAQs, and programs that are sufficient to make the topic understandable are provided.<\/p>\n<p>In the upcoming tutorial, we will cover the other Jump statements that we have listed at the beginning of this tutorial.<\/p>\n<p><strong>=&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/java\/\">Visit Here For The Exclusive Java Training Tutorial Series<\/a><\/strong><\/p>\n\r\n\t\t\t<div id=\"daexthefup-container\"\r\n\t\t\t\tclass=\"daexthefup-container daexthefup-layout-stacked daexthefup-alignment-center\"\r\n\t\t\t\tdata-post-id=\"150626\">\r\n\r\n\t\t\t\t<div class=\"daexthefup-feedback\">\r\n\t\t\t\t\t<div class=\"daexthefup-text\">\r\n\t\t\t\t\t\t<h3 class=\"daexthefup-title\">Was this helpful?<\/h3>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"daexthefup-buttons-container\">\r\n\t\t\t\t\t\t<div class=\"daexthefup-buttons\">\r\n\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-yes daexthefup-button daexthefup-button-type-icon\" data-value=\"1\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-up-cls-1{fill:#c9c9c9;}.thumb-up-cls-2{fill:#e1e1e1;}.thumb-up-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_up\">\r\n                        <path class=\"thumb-up-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-up-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"20\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,9.06l-.49-.1c-.81-.17-1.61.35-1.78,1.16l-5.3,11.74c-.17.81,3.16,1.61,3.97,1.78l1.96.41c.81.17,1.61-.35,1.78-1.16l2.18-10.27c.34-1.61-.7-3.21-2.31-3.56Z\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,20h-18.67c-.83,0-1.5.67-1.5,1.5v12c0,.83.67,1.5,1.5,1.5h16.27c.71,0,1.33-.5,1.47-1.21l2.4-12c.19-.93-.53-1.8-1.47-1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-no daexthefup-button daexthefup-button-type-icon\" data-value=\"0\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-down-cls-1{fill:#c9c9c9;}.thumb-down-cls-2{fill:#e1e1e1;}.thumb-down-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_down\">\r\n                        <path class=\"thumb-down-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-down-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"13\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,38.94l-.49.1c-.81.17-1.61-.35-1.78-1.16l-5.3-11.74c-.17-.81,3.16-1.61,3.97-1.78l1.96-.41c.81-.17,1.61.35,1.78,1.16l2.18,10.27c.34,1.61-.7,3.21-2.31,3.56Z\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,28h-18.67c-.83,0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5,1.5-1.5h16.27c.71,0,1.33.5,1.47,1.21l2.4,12c.19.93-.53,1.8-1.47,1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-comment\">\r\n\t\t\t\t\t<div class=\"daexthefup-comment-top-container\">\r\n\t\t\t\t\t\t<label id=\"daexthefup-comment-label\" class=\"daexthefup-comment-label\"><\/label>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-container\">\r\n\t\t\t\t\t\t\t\t<div id=\"daexthefup-comment-character-counter-number\"\r\n\t\t\t\t\t\t\t\t\tclass=\"daexthefup-comment-character-counter-number\"><\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-text\"><\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<textarea id=\"daexthefup-comment-textarea\" class=\"daexthefup-comment-textarea\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Type your message\"\r\n\t\t\t\t\t\t\t\tmaxlength=\"\r\n\t\t\t\t\t\t\t\t400\t\t\t\t\t\t\t\t\t\"><\/textarea>\r\n\t\t\t\t\t<div class=\"daexthefup-comment-buttons-container\">\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-submit daexthefup-button\">Submit<\/button>\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-cancel daexthefup-button\">Cancel<\/button>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-successful-submission-text\">Thanks for your feedback!<\/div>\r\n\r\n\t\t\t<\/div>\r\n\r\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>This tutorial explains how to use the Java Continue Statement in various scenarios while dealing with the loops with the help of programming examples: In this tutorial, we will discuss Java\u2019s \u201cContinue Statement\u201d &#8211; one of the jump statements that Java supports. Here, we will cover the topic in detail &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Java Continue Statement &#8211; How To Use Continue In Java\" class=\"read-more button\" href=\"https:\/\/www.softwaretestinghelp.com\/java-continue-statement\/#more-150626\" aria-label=\"Read more about Java Continue Statement &#8211; How To Use Continue In Java\">Read more<\/a><\/p>\n","protected":false},"author":9,"featured_media":151344,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_helpful_pro_status":1,"footnotes":""},"categories":[408],"tags":[],"class_list":{"0":"post-150626","1":"page","2":"type-page","3":"status-publish","4":"has-post-thumbnail","6":"category-java"},"acf":[],"_links":{"self":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/150626","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/comments?post=150626"}],"version-history":[{"count":0,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/150626\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media\/151344"}],"wp:attachment":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media?parent=150626"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/categories?post=150626"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/tags?post=150626"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}