Remove more unused @SuppressFBWarnings
[yangtools.git] / data / yang-data-util / src / main / java / org / opendaylight / yangtools / yang / data / util / NormalizedNodeSchemaUtils.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.yang.data.util;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Optional;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
14 import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode;
15 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
16
17 // FIXME: 8.0.0: re-examine usefulness of these methods
18 @Beta
19 public final class NormalizedNodeSchemaUtils {
20     private NormalizedNodeSchemaUtils() {
21         // Hidden on purpose
22     }
23
24     public static Optional<CaseSchemaNode> detectCase(final ChoiceSchemaNode schema, final DataContainerChild child) {
25         final QName childId = child.name().getNodeType();
26         for (var choiceCaseNode : schema.getCases()) {
27             if (choiceCaseNode.dataChildByName(childId) != null) {
28                 return Optional.of(choiceCaseNode);
29             }
30         }
31         return Optional.empty();
32     }
33 }