Add ValidatedTreeNode
[yangtools.git] / data / yang-data-tree-ri / src / main / java / org / opendaylight / yangtools / yang / data / tree / impl / ValidatedTreeNode.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. 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.yang.data.tree.impl;
9
10 import java.util.Optional;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.yangtools.yang.data.tree.impl.node.TreeNode;
14
15 @SuppressWarnings("null")
16 record ValidatedTreeNode(@Nullable TreeNode treeNode) {
17     ValidatedTreeNode(final Optional<? extends TreeNode> optional) {
18         this(optional.orElse(null));
19     }
20
21     @NonNull Optional<TreeNode> toOptional() {
22         return Optional.ofNullable(treeNode);
23     }
24 }