List of usage examples for io.vertx.core.json.pointer JsonPointer from
static JsonPointer from(String pointer)
From source file:examples.JsonPointerExamples.java
License:Open Source License
public void example1Pointers() { // Build a pointer from a string JsonPointer pointer1 = JsonPointer.from("/hello/world"); // Build a pointer manually JsonPointer pointer2 = JsonPointer.create().append("hello").append("world"); }