Move to the next element in the parent array.
Move to the next element in the parent array.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the next element,
or None if there is no next element or if the parent is not a
com.rojoma.json.v3.ast.JArray.
Move to the previous element in the parent array.
Move to the previous element in the parent array.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the previous element,
or None if there is no previous element or if the parent is not a
com.rojoma.json.v3.ast.JArray.
Replace the current value with an object.
Replace the current value with an object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the same location but with the current value replaced.
Replace the current value with an array.
Replace the current value with an array.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the same location but with the current value replaced.
Replace the current value with an atom.
Replace the current value with an atom.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the same location but with the current value replaced.
Move to a different field in the parent object.
Move to a different field in the parent object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the new field,
or None if that field does not exist or the parent is not a
com.rojoma.json.v3.ast.JObject.
Move up the chain of parents to the top of the object.
Move up the chain of parents to the top of the object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the top object,
or None if the top object was removed.
Move up the chain of parents to the top of the object.
Move up the chain of parents to the top of the object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the top object.
NoSuchElementException if the top object was removed.
Move to the parent object.
Move to the parent object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the parent object,
or None if this is the top-level object.
Move to the parent object.
Move to the parent object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the parent object.
NoSuchElementException if this is the top-level object.
Move to the next element in the parent array.
Move to the next element in the parent array.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the next element.
NoSuchElementException if there is no next element or if the parent is not
a com.rojoma.json.v3.ast.JArray.
Move to the previous element in the parent array.
Move to the previous element in the parent array.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the previous element.
NoSuchElementException if there is no previous element or if the parent is not
a com.rojoma.json.v3.ast.JArray.
Replace the current value with a new value.
Replace the current value with a new value.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the same location but with the current value replaced.
Move to a different field in the parent object.
Move to a different field in the parent object.
A com.rojoma.json.v3.zipper.JsonZipper pointing at the new field.
NoSuchElementException if there is no such field or if the parent is not a
com.rojoma.json.v3.ast.JObject.
A zipper referencing the hole left after a
removeoperation.