Package org.ojalgo.type.keyvalue
Interface EntryList<K,V>
-
- All Superinterfaces:
java.util.Collection<java.util.Map.Entry<K,V>>
,java.lang.Iterable<java.util.Map.Entry<K,V>>
,java.util.List<java.util.Map.Entry<K,V>>
,Paired<K,V>
- All Known Implementing Classes:
EntrySet
,EntrySet.KeyedPrimitives
,EntrySet.ObjectByte
,EntrySet.ObjectDouble
,EntrySet.ObjectFloat
,EntrySet.ObjectInt
,EntrySet.ObjectLong
,EntrySet.ObjectObject
,EntrySet.ObjectShort
public interface EntryList<K,V> extends java.util.List<java.util.Map.Entry<K,V>>, Paired<K,V>
-
-
Method Summary
Static Methods Modifier and Type Method Description static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, byte[] values)
static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, double[] values)
static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, float[] values)
static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, int[] values)
static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, long[] values)
static <K> EntryList<K,PrimitiveNumber>
wrap(K[] keys, short[] values)
static <K,V>
EntryList<K,V>wrap(K[] keys, V[] values)
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, byte[] values)
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, double[] values)
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, float[] values)
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, int[] values)
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, long[] values)
-
wrap
static <K> EntryList<K,PrimitiveNumber> wrap(K[] keys, short[] values)
-
wrap
static <K,V> EntryList<K,V> wrap(K[] keys, V[] values)
-
-