Uses of Interface
org.ojalgo.type.keyvalue.EntryList
-
Packages that use EntryList Package Description org.ojalgo.type.keyvalue -
-
Uses of EntryList in org.ojalgo.type.keyvalue
Classes in org.ojalgo.type.keyvalue that implement EntryList Modifier and Type Class Description class
EntrySet<K,V>
Allows you to wrap and treat two arrays as aCollection
of key-value pairs.(package private) static class
EntrySet.KeyedPrimitives<K>
(package private) static class
EntrySet.ObjectByte<K>
(package private) static class
EntrySet.ObjectDouble<K>
(package private) static class
EntrySet.ObjectFloat<K>
(package private) static class
EntrySet.ObjectInt<K>
(package private) static class
EntrySet.ObjectLong<K>
(package private) static class
EntrySet.ObjectObject<K,V>
(package private) static class
EntrySet.ObjectShort<K>
Methods in org.ojalgo.type.keyvalue that return EntryList Modifier and Type Method Description static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, byte[] values)
static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, double[] values)
static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, float[] values)
static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, int[] values)
static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, long[] values)
static <K> EntryList<K,PrimitiveNumber>
EntryList. wrap(K[] keys, short[] values)
static <K,V>
EntryList<K,V>EntryList. wrap(K[] keys, V[] values)
-