Class EntrySet<K,V>

java.lang.Object
java.util.AbstractCollection<Map.Entry<K,V>>
java.util.AbstractList<Map.Entry<K,V>>
org.ojalgo.type.keyvalue.EntrySet<K,V>
All Implemented Interfaces:
Iterable<Map.Entry<K,V>>, Collection<Map.Entry<K,V>>, List<Map.Entry<K,V>>, SequencedCollection<Map.Entry<K,V>>, Set<Map.Entry<K,V>>, EntryList<K,V>, Paired<K,V>
Direct Known Subclasses:
EntrySet.KeyedPrimitives, EntrySet.ObjectObject

public abstract class EntrySet<K,V> extends AbstractList<Map.Entry<K,V>> implements EntryList<K,V>, Set<Map.Entry<K,V>>
Allows you to wrap and treat two arrays as a Collection of key-value pairs. Implements both List and Set but does not in any way test or enforce uniqueness – that's up to the user of this class.