Package org.openstreetmap.josm.data.osm
Class TagMap.TagEntrySet
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<Map.Entry<String,String>>
-
- org.openstreetmap.josm.data.osm.TagMap.TagEntrySet
-
- All Implemented Interfaces:
Iterable<Map.Entry<String,String>>
,Collection<Map.Entry<String,String>>
,Set<Map.Entry<String,String>>
- Enclosing class:
- TagMap
private static class TagMap.TagEntrySet extends AbstractSet<Map.Entry<String,String>>
This is the entry set of this map. It represents the state when it was created.
-
-
Constructor Summary
Constructors Constructor Description TagEntrySet(String... tags)
Create a newTagMap.TagEntrySet
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<Map.Entry<String,String>>
iterator()
int
size()
-
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
-
Methods inherited from class java.util.AbstractCollection
add, addAll, clear, contains, containsAll, isEmpty, remove, retainAll, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Constructor Detail
-
TagEntrySet
TagEntrySet(String... tags)
Create a newTagMap.TagEntrySet
- Parameters:
tags
- The tags array. It is never changed but should also not be changed by you.
-
-