]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/SingletonCollection.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / SingletonCollection.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.utils.datastructures;
13
14 import java.util.Collection;
15 import java.util.Iterator;
16
17 public class SingletonCollection<T> extends ImmutableSet<T> {
18
19     T content;        
20     
21     public SingletonCollection(T content) {
22         this.content = content;
23     }
24
25     @Override
26     public boolean contains(Object o) {
27         return content.equals(o);
28     }
29
30     @Override
31     public boolean containsAll(Collection<?> c) {
32         for(Object o : c)
33             if(!content.equals(o))
34                 return false;
35         return true;
36     }
37
38     @Override
39     public boolean isEmpty() {
40         return content == null;
41     }
42     
43     static class SingletonIterator<T> extends ImmutableIterator<T> {
44
45         T content;
46         
47         public SingletonIterator(T content) {
48             this.content = content;
49         }
50
51         @Override
52         public boolean hasNext() {
53             return(content != null);
54         }
55
56         @Override
57         public T next() {
58             T ret = content;
59             content = null;
60             return ret;
61         }
62         
63     }
64
65     @Override
66     public Iterator<T> iterator() {
67         return new SingletonIterator<T>(content);
68     }
69
70     @Override
71     public int size() {
72         if(content == null)
73             return 0;
74         else
75             return 1;
76     }
77
78 }