Interface Path<P extends Path<P>>
-
- Type Parameters:
P
- Path equivalence class
- All Known Implementing Classes:
YangInstanceIdentifier
public interface Path<P extends Path<P>>
Conceptual representation of a logical path in a tree-like structure, similar to aPath
, but more general in terms of what objects it can be applied to. Paths have an equivalence class, which is captured in the defining type. Paths also have the notion of containment, where one path is said to contain another path if it the data set identified by the former contains all elements of the data set represented by later.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
contains(@NonNull P other)
Check if this path contains some other.
-
-
-
Method Detail
-
contains
boolean contains(@NonNull P other)
Check if this path contains some other.- Parameters:
other
- Other path, may not be null.- Returns:
- True if this path contains the other.
-
-