Interface JsonWalker

All Known Implementing Classes:
JsonWalkers

public interface JsonWalker
Extract objects from JsonObject sub-path.
  • Method Summary

    Modifier and Type
    Method
    Description
    Stream<jakarta.json.JsonObject>
    extract(jakarta.json.JsonObject object, JsonLdPath path)
    Extract a Stream of JsonObject from the path passed that can then be validated.
  • Method Details

    • extract

      Stream<jakarta.json.JsonObject> extract(jakarta.json.JsonObject object, JsonLdPath path)
      Extract a Stream of JsonObject from the path passed that can then be validated.
      Parameters:
      object - the JsonObject.
      path - the JsonLdPath.
      Returns:
      a Stream of JsonObject can never be null.