Class EntrySetMap

  • All Implemented Interfaces:
    Map

    public class EntrySetMap
    extends 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
    • Field Detail

      • m_setEntries

        protected Set m_setEntries
        The underlying set of Entry objects.
    • Constructor Detail

      • EntrySetMap

        public EntrySetMap​(Set setEntries)