]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/SelectionUtils.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / SelectionUtils.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.utils.datastructures;\r
13 \r
14 import java.util.Collection;\r
15 import java.util.ConcurrentModificationException;\r
16 \r
17 public class SelectionUtils {\r
18 \r
19     public static <T> T getSingle(Collection<T> collection) {\r
20         if(collection.size() != 1)\r
21             throw new RuntimeException("Size of the collection is not one.");\r
22         for(T obj : collection)\r
23             return obj;\r
24         throw new ConcurrentModificationException("collection was emptied before iteration");\r
25     }\r
26     \r
27     public static <T> T getAtMostOne(Collection<T> collection) {\r
28         if(collection.size() > 1)\r
29             throw new RuntimeException("Size of the collection is greater than one.");\r
30         for(T obj : collection)\r
31             return obj;\r
32         return null;\r
33     }\r
34 \r
35 }\r