@PublicApi public class ExecutionPath extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static interface |
ExecutionPath.PathSegment<T> |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
int |
hashCode() |
static ExecutionPath |
rootPath()
All paths start from here
|
ExecutionPath |
segment(int segment)
Takes the current path and adds a new segment to it, returning a new path
|
ExecutionPath |
segment(java.lang.String segment)
Takes the current path and adds a new segment to it, returning a new path
|
java.util.List<java.lang.Object> |
toList() |
java.lang.String |
toString() |
public static ExecutionPath rootPath()
public ExecutionPath segment(java.lang.String segment)
segment - the string path segment to addpublic ExecutionPath segment(int segment)
segment - the int path segment to addpublic java.util.List<java.lang.Object> toList()
public java.lang.String toString()
toString in class java.lang.Objectpublic boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Object