Package org.geotools.data.memory
Class MemoryEntry
- Object
-
- ContentEntry
-
- MemoryEntry
-
public class MemoryEntry extends ContentEntry
Entry used to store features (of a single FeatureType).Please be sure to synchronize on entry before access:
synchronize ( entry ){ entry.memory.put( feature.getID(), feature ); }
- Author:
- Jody Garnett (Boundless)
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected MemoryState
createContentState(ContentEntry entry)
Map<String,SimpleFeature>
getMemory()
Access thememory
field used to store feature content.String
toString()
-
Methods inherited from class ContentEntry
clearTransaction, dispose, getDataStore, getName, getState, getTypeName
-
-
-
-
Method Detail
-
createContentState
protected MemoryState createContentState(ContentEntry entry)
-
getMemory
public Map<String,SimpleFeature> getMemory()
Access thememory
field used to store feature content.- Returns:
- the memory
-
toString
public String toString()
- Overrides:
toString
in classContentEntry
-
-