Document the Path concept.
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Path.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.concepts;
9
10 /**
11  * Conceptual representation of a logical path in a tree-like structure, similar to a
12  * {@link java.nio.file.Path}, but more general in terms of what objects it can be applied to.
13  * Paths have an equivalence class, which is captured in the defining type. Paths also have the
14  * notion of containment, where one path is said to contain another path if it the data set
15  * identified by the former contains all elements of the data set represented by later.
16  *
17  * @param <P> Path equivalence class
18  */
19 public interface Path<P extends Path<P>> {
20     /**
21      * Check if this path contains some other.
22      *
23      * @param other Other path, may not be null.
24      * @return True if this path contains the other.
25      */
26     boolean contains(P other);
27 }