Attributes
- Companion
- class
- Graph
-
- Supertypes
-
trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
JsonPointer.type
Members list
Type members
Inherited and Abstract types
The names of the product elements
The names of the product elements
Attributes
- Inherited from:
- Mirror
The name of the type
The name of the type
Attributes
- Inherited from:
- Mirror
Value members
Concrete methods
Attributes
- Returns
-
an empty
JsonPointer
Builds a JsonPointer from a String.
Builds a JsonPointer from a String.
Value parameters
- pointer
-
the String representing a valid JSON pointer
Attributes
- Returns
-
the JsonPointer
- Throws
-
IllegalArgumentException
if the given String is not a valid JSON pointer
Builds a JsonPointer from a java.net.URI.
Builds a JsonPointer from a java.net.URI.
Value parameters
- pointer
-
- the URI representing a valid JSON pointer
Attributes
- Returns
-
the JsonPointer
- Throws
-
IllegalArgumentException
if the given URI is not a valid JSON pointer
Same as apply(pointer), for compatibility with Vert.x core.
Builds a JsonPointer from a String, returning an Option. This comes in handy in situations when it is unknown if the String contains a valid JSON pointer, e.g. if the String is a variable.
Builds a JsonPointer from a String, returning an Option. This comes in handy in situations when it is unknown if the String contains a valid JSON pointer, e.g. if the String is a variable.
Value parameters
- pointer
-
the String representing a pointer
Attributes
- Returns
-
Some(JsonPointer) if the given String was valid, else None
Builds a JsonPointer from a URI, returning an Option. This comes in handy in situations when it is unknown if the URI contains a valid JSON pointer, e.g. if the URI is a variable.
Builds a JsonPointer from a URI, returning an Option. This comes in handy in situations when it is unknown if the URI contains a valid JSON pointer, e.g. if the URI is a variable.
Value parameters
- uri
-
the uri representing the JSON pointer
Attributes
- Returns
-
Some(JsonPointer) if the given URI was valid, else None