public class ImmutablePath extends Object implements Path, Serializable, Cloneable
Path.Exceptions| Modifier | Constructor and Description |
|---|---|
protected |
ImmutablePath() |
| Modifier and Type | Method and Description |
|---|---|
void |
addLabel(String label)
Add label to the current head of the path.
|
ImmutablePath |
clone() |
Path |
extend(Object object,
String... labels)
Add a new step to the path with an object and any number of associated labels.
|
<A> A |
get(int index)
Get the object associated with the specified index into the path.
|
boolean |
hasLabel(String label)
Return true if the path has the specified label, else return false.
|
List<Set<String>> |
labels()
An ordered list of the labels associated with the path
|
static Path |
make() |
List<Object> |
objects()
An ordered list of the objects in the path.
|
int |
size()
Get the number of step in the path.
|
String |
toString() |
public static Path make()
public ImmutablePath clone()
Pathpublic int size()
Pathpublic Path extend(Object object, String... labels)
Pathpublic <A> A get(int index)
Pathpublic boolean hasLabel(String label)
Pathpublic void addLabel(String label)
Pathpublic List<Object> objects()
Pathpublic List<Set<String>> labels()
PathCopyright © 2013–2015 Apache Software Foundation. All rights reserved.