2 * Free Telco Dictionary
3 * Copyright © 2013 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package cz.frantovo.telco.dictionary;
20 import java.io.Closeable;
21 import java.io.IOException;
22 import java.util.HashSet;
23 import java.util.Iterator;
25 import java.util.Map.Entry;
27 import java.util.logging.Level;
28 import java.util.logging.Logger;
29 import org.w3c.dom.Node;
30 import org.w3c.dom.NodeList;
34 * @author Ing. František Kučera (frantovo.cz)
36 public class Functions {
38 private static final Logger log = Logger.getLogger(Functions.class.getName());
40 public static Iterable<Node> nodeIterable(final NodeList list) {
41 return new Iterable<Node>() {
43 public Iterator<Node> iterator() {
44 return new Iterator<Node>() {
48 public boolean hasNext() {
49 return position < list.getLength();
54 return list.item(position++);
58 public void remove() {
59 throw new UnsupportedOperationException("remove not supported");
66 public static void close(Closeable c) {
69 } catch (Exception e) {
70 log.log(Level.WARNING, "closing of " + c + " has failed", e);
74 public static boolean equalz(Object a, Object b) {
75 return a == null ? b == null : a.equals(b);
78 public static <K, V> Set<K> getKeysForValue(Map<K, V> map, V value) {
79 Set<K> keysFound = new HashSet<>();
81 for (Entry<K, V> entry : map.entrySet()) {
82 if (equalz(value, entry.getValue())) {
83 keysFound.add(entry.getKey());