297b52bf17025413585760c3059ef96913ec9c1c
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / PresencePredicate.java
1 /*
2  * (C) Copyright 2017 Pantheon Technologies, s.r.o. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.opendaylight.yangtools.triemap;
17
18 /**
19  * Presence predicate. These are specialized objects passed down from callers to indicate an assertion about
20  * whether a mapping is required.
21  *
22  * @author Robert Varga
23  */
24 enum PresencePredicate {
25     ABSENT,
26     PRESENT;
27 }