Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


com.tangosol.util
Class EntrySetMap

java.lang.Object
  extended by java.util.AbstractMap
      extended by com.tangosol.util.EntrySetMap

All Implemented Interfaces:
java.util.Map

public class EntrySetMap
extends java.util.AbstractMap

A trivial Map implementation that is based on a specified set of entries. This implementation does not support inserts or updates. Additionally, since almost every operation is implemented by iterating over the underlying entry set, this class is meant to be used only for iterations or small sets of data.

Since:
Coherence 3.6

Nested Class Summary

 

Nested classes/interfaces inherited from class java.util.AbstractMap
java.util.AbstractMap.SimpleEntry, java.util.AbstractMap.SimpleImmutableEntry

 

Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry

 

Field Summary
protected  java.util.Set m_setEntries
          The underlying set of Entry objects.

 

Constructor Summary
EntrySetMap(java.util.Set setEntries)
           

 

Method Summary
 java.util.Set entrySet()
           

 

Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values

 

Field Detail

m_setEntries

protected java.util.Set m_setEntries
The underlying set of Entry objects.

Constructor Detail

EntrySetMap

public EntrySetMap(java.util.Set setEntries)

Method Detail

entrySet

public java.util.Set entrySet()
Specified by:
entrySet in interface java.util.Map
Specified by:
entrySet in class java.util.AbstractMap

Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.