All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.configuration2.tree.AbstractImmutableNodeHandler Maven / Gradle / Ivy

Go to download

Tools to assist in the reading of configuration/preferences files in various formats

There is a newer version: 2.10.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.configuration2.tree;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;

/**
 * 

* An abstract base class for a {@link NodeHandler} implementation for * {@link ImmutableNode} objects. *

*

* This class already implements all methods which need no other information * than the passed in node object. Functionality which requires additional state * (e.g. querying the root node or a parent node) has to be added by concrete * sub classes. *

* * @version $Id: AbstractImmutableNodeHandler.java 1636040 2014-11-01 20:51:09Z oheger $ * @since 2.0 */ abstract class AbstractImmutableNodeHandler implements NodeHandler { @Override public String nodeName(ImmutableNode node) { return node.getNodeName(); } @Override public Object getValue(ImmutableNode node) { return node.getValue(); } @Override public List getChildren(ImmutableNode node) { return node.getChildren(); } @Override public int getMatchingChildrenCount(ImmutableNode node, NodeMatcher matcher, C criterion) { return getMatchingChildren(node, matcher, criterion).size(); } /** * {@inheritDoc} This implementation returns an immutable list with all * child nodes accepted by the specified matcher. */ @Override public List getMatchingChildren(ImmutableNode node, NodeMatcher matcher, C criterion) { List result = new ArrayList(node.getChildren().size()); for (ImmutableNode c : node.getChildren()) { if (matcher.matches(c, this, criterion)) { result.add(c); } } return Collections.unmodifiableList(result); } /** * {@inheritDoc} This implementation returns an immutable list with all * child nodes that have the specified name. */ @Override public List getChildren(ImmutableNode node, String name) { return getMatchingChildren(node, NodeNameMatchers.EQUALS, name); } @Override public ImmutableNode getChild(ImmutableNode node, int index) { return node.getChildren().get(index); } @Override public int indexOfChild(ImmutableNode parent, ImmutableNode child) { return parent.getChildren().indexOf(child); } @Override public int getChildrenCount(ImmutableNode node, String name) { if (name == null) { return node.getChildren().size(); } else { return getMatchingChildrenCount(node, NodeNameMatchers.EQUALS, name); } } @Override public Set getAttributes(ImmutableNode node) { return node.getAttributes().keySet(); } @Override public boolean hasAttributes(ImmutableNode node) { return !node.getAttributes().isEmpty(); } @Override public Object getAttributeValue(ImmutableNode node, String name) { return node.getAttributes().get(name); } /** * {@inheritDoc} This implementation assumes that a node is defined if it * has a value or has children or has attributes. */ @Override public boolean isDefined(ImmutableNode node) { return AbstractImmutableNodeHandler.checkIfNodeDefined(node); } /** * Checks if the passed in node is defined. Result is true if the * node contains any data. * * @param node the node in question * @return true if the node is defined, false otherwise */ static boolean checkIfNodeDefined(ImmutableNode node) { return node.getValue() != null || !node.getChildren().isEmpty() || !node.getAttributes().isEmpty(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy