Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

549
Views
Java 8 - working with JsonObject (javax.json) - how to determine if a node has child nodes?

I've just started using javax.json package. I know how to extract values from JSON object in Java 8 if I know the structure of my JSON string. But how about strings I don't know the structure of? The question: how to determine if a node has child nodes?

To read values, I simply need to use "get*" methods - it works OK, but there's no method like "checkIfArray" or "checkIfObject" to check if I even can use methods like "getString"...

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

In javax.json package, both available types support emptiness checks because they both implement a java.collection interfaces:

JsonObject is-a java.util.Map<String, JsonValue>. As a result, one can check if such object contains any values by simply calling isEmpty() method.

JsonArray is-a java.util.List<JsonValue>. As a result, one - again - can check if the array is empty by calling isEmpty() method on it.

For traversing a tree of JsonStructures while marking all empty nodes, you can use this helper method:

boolean isValueEmpty(JsonValue v) {
  if (v == null) {
    return true; // or you may throw an exception, for example
  }
  switch(v.getValueType()) {
    case NULL:
      return true; // same as with Java null, we assume that it is Empty
    case ARRAY: 
      return ((JsonArray) v).isEmpty();
      // additionally, you can say that empty array is array with only empty elements
      // this means a check like this:
      // return ((JsonArray v).stream().allMatch(isValueEmpty); // recurse
    case OBJECT:
      return ((JsonObject v).isEmpty();
    case STRING:
      // optionally: if you want to treat '' as empty
      return ((JsonString v).getString().isEmpty();
    default:
      return false; // to my knowledge, no other Json types can be empty
  }
}
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!